Skip to content

Shorten the 'fetch-vars' jobs. (#84) #21

Shorten the 'fetch-vars' jobs. (#84)

Shorten the 'fetch-vars' jobs. (#84) #21

name: Deploy API to EC2 staging

Check failure on line 1 in .github/workflows/api-deploy-staging.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/api-deploy-staging.yml

Invalid workflow file

No steps defined in `steps` and no workflow called in `uses` for the following jobs: fetch-vars
on:
push:
branches:
- main
jobs:
fetch-vars:
runs-on: ubuntu-latest
environment: staging
outputs:
service_name: ${{ vars.API_SERVICE_NAME }}
service_path: ${{ vars.API_SERVICE_PATH }}
deploy:
needs: fetch-vars
uses: ./.github/workflows/deploy-dotnet-service-ec2.yml
secrets: inherit
with:
project-name: Api
dotnet-version: '6.0.x'
service-name: ${{ needs.fetch-vars.outputs.service_name }}
service-path: ${{ needs.fetch-vars.outputs.service_path }}
environment: staging