Merge pull request #1069 from DFE-Digital/decisions_Cypress_Tests #541
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 to environment | ||
on: | ||
push: | ||
branches: | ||
- main | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
type: environment | ||
description: "Choose an environment to deploy to" | ||
required: true | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.event.inputs.environment }} | ||
env: | ||
NODE_VERSION: 18.x | ||
jobs: | ||
set-env: | ||
name: Determine environment | ||
runs-on: ubuntu-22.04 | ||
outputs: | ||
environment: ${{ steps.var.outputs.environment }} | ||
release: ${{ steps.var.outputs.release }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- id: var | ||
run: | | ||
INPUT=${{ github.event.inputs.environment }} | ||
ENVIRONMENT=${INPUT:-"dev"} | ||
RELEASE=${ENVIRONMENT,,}-`date +%Y-%m-%d`.${{ github.run_number }} | ||
echo "environment=${ENVIRONMENT,,}" >> $GITHUB_OUTPUT | ||
echo "release=${RELEASE}" >> $GITHUB_OUTPUT | ||
deploy-image: | ||
name: Deploy | ||
needs: [ set-env ] | ||
uses: DFE-Digital/deploy-azure-container-apps-action/.github/workflows/[email protected] | ||
with: | ||
docker-image-name: 'a2bint-app' | ||
docker-build-file-name: './Dockerfile' | ||
environment: ${{ needs.set-env.outputs.environment }} | ||
secrets: | ||
azure-acr-credentials: ${{ secrets.ACR_CREDENTIALS }} | ||
azure-acr-name: ${{ secrets.ACR_NAME }} | ||
azure-aca-credentials: ${{ secrets.AZURE_ACA_CREDENTIALS }} | ||
azure-aca-name: ${{ secrets.AZURE_ACA_NAME }} | ||
azure-aca-resource-group: ${{ secrets.AZURE_ACA_RESOURCE_GROUP }} | ||
create-tag: | ||
name: Tag and release | ||
needs: [ set-env, deploy-image ] | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.ref }} | ||
- name: Create tag | ||
run: | | ||
git tag ${{ needs.set-env.outputs.release }} | ||
git push origin ${{ needs.set-env.outputs.release }} | ||
- name: Create release | ||
uses: "actions/github-script@v7" | ||
with: | ||
github-token: "${{ secrets.GITHUB_TOKEN }}" | ||
script: | | ||
try { | ||
await github.rest.repos.createRelease({ | ||
draft: false, | ||
generate_release_notes: true, | ||
name: "${{ needs.set-env.outputs.release }}", | ||
owner: context.repo.owner, | ||
prerelease: false, | ||
repo: context.repo.repo, | ||
tag_name: "${{ needs.set-env.outputs.release }}", | ||
}); | ||
} catch (error) { | ||
core.setFailed(error.message); | ||
} | ||
cypress-tests: | ||
name: Run Cypress Tests | ||
if: needs.set-env.outputs.environment == 'staging' || needs.set-env.outputs.environment == 'dev' | ||
needs: [ deploy-image, set-env ] | ||
runs-on: ubuntu-latest | ||
uses: ./.github/workflows/cypress.yml | ||
Check failure on line 92 in .github/workflows/build-and-push-image.yml GitHub Actions / Deploy to environmentInvalid workflow file
|
||
with: | ||
environment: ${{ needs.set-env.outputs.environment }} | ||
secrets: inherit |