Skip to content

Bump follow-redirects from 1.15.4 to 1.15.6 in /src/Web/ClientApp-React #57

Bump follow-redirects from 1.15.4 to 1.15.6 in /src/Web/ClientApp-React

Bump follow-redirects from 1.15.4 to 1.15.6 in /src/Web/ClientApp-React #57

Workflow file for this run

name: CICD
on:
push:
branches: [ main ]
paths-ignore:
- .gitignore
- CODE_OF_CONDUCT.md
- LICENSE
- README.md
permissions:
id-token: write
contents: read
jobs:
build:
uses: ./.github/workflows/build.yml
with:
build-artifacts: true
deploy-development:
uses: ./.github/workflows/deploy.yml
secrets: inherit
needs: [ build ]
with:
environmentName: Development
deploy-staging:
uses: ./.github/workflows/deploy.yml
secrets: inherit
needs: [ deploy-development ]
with:
environmentName: Staging
deploy-production:
uses: ./.github/workflows/deploy.yml
secrets: inherit
needs: [ deploy-staging ]
with:
environmentName: Production