fix(charts): uncommitted file (#902) #238
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: Container image build | |
| on: | |
| push: | |
| tags: | |
| - edge-* | |
| - v* | |
| branches: | |
| - master | |
| jobs: | |
| ko: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version-file: go.mod | |
| - name: "ko: install" | |
| run: make ko | |
| - name: "ko: login to quay.io container registry" | |
| run: ./bin/ko login quay.io -u ${{ secrets.QUAY_IO_USERNAME }} -p ${{ secrets.QUAY_IO_TOKEN }} | |
| - name: "ko: login to docker.io container registry" | |
| run: ./bin/ko login docker.io -u ${{ secrets.DOCKER_IO_USERNAME }} -p ${{ secrets.DOCKER_IO_TOKEN }} | |
| - name: "ko: build and push tag" | |
| run: make VERSION=${{ github.ref_name }} KO_LOCAL=false KO_PUSH=true build | |
| if: startsWith(github.ref, 'refs/tags/v') || startsWith(github.ref, 'refs/tags/edge-') | |
| - name: "ko: build and push latest" | |
| run: make VERSION=latest KO_LOCAL=false KO_PUSH=true build |