Build and push ngen image #22
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 and push ngen image | |
on: | |
push: | |
branches: [ main ] | |
paths: | |
- docker/** | |
workflow_run: | |
workflows: [Build and push t-route image] | |
types: | |
- completed | |
workflow_dispatch: | |
jobs: | |
on-success: | |
runs-on: | |
labels: Nightly_Runner | |
if: ${{ github.event.workflow_run.conclusion == 'success' }} | |
steps: | |
- name: deploy | |
uses: actions/checkout@v2 | |
- name: Build and push Docker image | |
uses: ./.github/action_templates/build-and-push | |
with: | |
docker-auth-token: ${{ secrets.DOCKER_AUTH_TOKEN }} | |
github-sha: ${{ github.sha }} | |
image-name: "ngen" | |
dockerfile-name: "Dockerfile.ngen" | |
on-failure: | |
runs-on: | |
labels: Nightly_Runner | |
if: ${{ github.event.workflow_run.conclusion == 'failure' }} | |
steps: | |
- run: echo 'The triggering workflow failed' |