Build latest from main and Auto-Deploy to Testing and Staging #268
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: Build latest from main and Auto-Deploy to Testing and Staging | |
on: | |
workflow_run: | |
workflows: [ 'Run Tests' ] | |
branches: [ 'main' ] | |
types: [ completed ] | |
jobs: | |
build-unstable: | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
uses: mlibrary/platform-engineering-workflows/.github/workflows/build-unstable.yml@v1 | |
with: | |
image_name: ${{ vars.IMAGE_NAME }} | |
tag: ${{ github.sha }} | |
dockerfile: Dockerfile | |
secrets: inherit | |
#scan-image: | |
#needs: build-unstable | |
#runs-on: ubuntu-latest | |
#steps: | |
#- name: Run Trivy vulnerability scanner | |
#uses: aquasecurity/trivy-action@master | |
#with: | |
#image-ref: ${{ needs.build-unstable.outputs.image }} | |
#format: 'table' | |
#exit-code: '1' | |
#ignore-unfixed: true | |
#vuln-type: 'os,library' | |
#severity: 'CRITICAL,HIGH' | |
#skip-files: '/gems/ruby/3.2.0/gems/openid_connect-2.2.0/spec/mock_response/public_keys/private_key.pem' | |
deploy-unstable: | |
needs: build-unstable | |
name: Deploy to workshop | |
uses: mlibrary/platform-engineering-workflows/.github/workflows/deploy.yml@v1 | |
with: | |
image: ${{ needs.build-unstable.outputs.image }} | |
file: environments/account/workshop/web-image.txt | |
secrets: inherit |