do not always error out while checking for existence of resources #333
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: build | |
on: | |
pull_request: | |
branches: | |
- main | |
- release-* | |
# cancel the in-progress workflow when PR is refreshed. | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
build: | |
name: build | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 1 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version-file: go.mod | |
- name: run make build | |
run: make build | |
- name: make build installer | |
run: make build-installer | |
- name: run build multifile installer | |
run: make build-multifile-installer | |
- name: Check for uncommitted changes | |
run: make check-all-committed | |
- name: Show the uncommitted "git diff" | |
if: ${{ failure() }} | |
run: git diff ; false |