diff --git a/.gitea/workflows/deploy-api.yml.yml b/.gitea/workflows/deploy-api.yml.yml new file mode 100644 index 00000000..863ffc7a --- /dev/null +++ b/.gitea/workflows/deploy-api.yml.yml @@ -0,0 +1,17 @@ +name: Deploy API + +on: + workflow_call: + inputs: + env: + required: true + type: string + +jobs: + deploy: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - name: Deploy API + run: | + echo "Deploying API to ${{ inputs.env }}" \ No newline at end of file