fix: cicd with secrets config #65
Workflow file for this run
This file contains hidden or 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 Hansards Backend | |
| on: | |
| push: | |
| branches: ["main"] | |
| tags: | |
| - "STAGING-v*" | |
| - "v*" | |
| env: | |
| AWS_REGION: ap-southeast-1 | |
| IMAGE: hansards-back | |
| permissions: | |
| id-token: write # This is required for requesting the JWT | |
| contents: read # This is required for actions/checkout | |
| jobs: | |
| deploy: | |
| name: Deploy | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| - name: Configure AWS Credentials | |
| uses: aws-actions/configure-aws-credentials@v1 | |
| with: | |
| role-to-assume: arn:aws:iam::767397910274:role/github-oidc-provider-aws | |
| aws-region: ap-southeast-1 | |
| - name: Login to Amazon ECR | |
| id: login-ecr | |
| uses: aws-actions/amazon-ecr-login@v1 | |
| - name: Determine environment and image | |
| id: determine-env | |
| run: | | |
| if [[ ${{ github.ref }} == refs/tags/STAGING-v* ]]; then | |
| echo "ENVIRONMENT=staging" >> $GITHUB_OUTPUT | |
| echo "IMAGE=${{ env.IMAGE }}" >> $GITHUB_OUTPUT | |
| else | |
| echo "ENVIRONMENT=development" >> $GITHUB_OUTPUT | |
| echo "IMAGE=${{ env.IMAGE }}" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Extract metadata (tags, labels) for Docker | |
| id: meta | |
| uses: docker/metadata-action@v5 | |
| with: | |
| images: | | |
| ${{ steps.login-ecr.outputs.registry }}/${{ env.IMAGE }} | |
| tags: | | |
| type=sha | |
| - name: Build and push Docker images | |
| uses: docker/build-push-action@v5 | |
| with: | |
| context: . | |
| file: Dockerfile | |
| push: true | |
| tags: | | |
| ${{ steps.meta.outputs.tags }} | |
| labels: | | |
| ${{ steps.meta.outputs.labels }} | |
| - name: Log out of Amazon ECR | |
| run: docker logout ${{ steps.login-ecr.outputs.registry }} | |
| - name: Deploy with Spinnaker | |
| run: | | |
| curl --request POST \ | |
| --url https://spin-gate.govtechmy.dev/webhooks/webhook/github \ | |
| --header 'Content-Type: application/json' \ | |
| --data '{ | |
| "secret": "${{ secrets.SPINNAKER_SECRET }}", | |
| "artifacts": [ | |
| { | |
| "type": "docker/image", | |
| "reference": "${{ steps.meta.outputs.tags }}", | |
| "name": "${{ steps.login-ecr.outputs.registry }}/${{ env.IMAGE }}", | |
| "version": "${{ steps.meta.outputs.version }}" | |
| } | |
| ], | |
| "environment": "${{ steps.determine-env.outputs.ENVIRONMENT }}" | |
| }' |