Testing check images with version 0.4.6 #2
Workflow file for this run
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: Test Check Images | |
on: | |
push: | |
branches: | |
- 58055-check-images | |
workflow_dispatch: | |
branches: | |
- 58055-check-images | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Checkout into branch | |
run: git checkout -b staging-pr-workflow | |
- name: Pull scripts | |
run: sudo make pull-scripts | |
- name: Pull in all relevant branches | |
run: git fetch origin release-v2.7 | |
- name: Check container images | |
run: sudo make check-images | |
if: startsWith(github.ref, 'refs/heads/58055') | |
continue-on-error: true |