Trying to workaround tigera container path #62
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: Check sinker config | |
on: | |
pull_request: | |
env: | |
GHCR_USERNAME: ${{ github.actor }} | |
GHCR_PASSWORD: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
check: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Prepare Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: '^1.17.0' | |
- name: Checkout sinker | |
uses: actions/checkout@master | |
with: | |
repository: mnasiadka/sinker | |
ref: refs/heads/target-tag | |
- name: Install sinker | |
run: make build && cp ./sinker ../ | |
- name: Checkout container-image-sync | |
uses: actions/checkout@master | |
# - name: Run sinker check | |
# run: ../sinker check | |
- name: Run sinker push (dry-run) | |
run: ../sinker push --dryrun | |
continue-on-error: true | |
- name: Run sinker push with magic manifest | |
run: ../sinker push --manifest .tigera.yaml |