Skip to content

Deploy sharing bug fix. (#107) #7

Deploy sharing bug fix. (#107)

Deploy sharing bug fix. (#107) #7

name: Deploy Website to EC2 PROD
on:
push:
branches:
- PROD
jobs:
fetch-vars:
if: github.repository_owner == 'Yorubaname'
runs-on: ubuntu-latest
environment: PROD
outputs:
service_name: ${{ vars.WEBSITE_SERVICE_NAME }}
service_path: ${{ vars.WEBSITE_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: Website
dotnet-version: '8.0.x'
service-name: ${{ needs.fetch-vars.outputs.service_name }}
service-path: ${{ needs.fetch-vars.outputs.service_path }}
environment: PROD