Allow privileged users to manage GeoLocations list. (#91) #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy API to EC2 staging | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
fetch-vars: | |
if: github.repository_owner == 'Yorubaname' | |
runs-on: ubuntu-latest | |
environment: staging | |
outputs: | |
service_name: ${{ vars.API_SERVICE_NAME }} | |
service_path: ${{ vars.API_SERVICE_PATH }} | |
steps: | |
- run: echo "Exposing vars to reusable workflow." | |
deploy: | |
if: github.repository_owner == 'Yorubaname' | |
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 |