fix(deps): update module github.com/google/go-github/v57 to v61 - autoclosed #280
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: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
diskimage: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Ensure all files were formatted as per gofmt | |
run: | | |
gofmt -l $(find . -name '*.go') >/dev/null | |
- name: run build (AMD64) | |
run: go build . | |
- name: run tests | |
run: go test ./... | |
- name: tar asset | |
run: tar -czvf go-ghwrite_linux-amd64.tar.gz go-ghwrite | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: go-ghwrite_linux-amd64.tar.gz | |
- name: run build (MIPS64) | |
run: GOOS=linux GOARCH=mips64 go build . | |
- name: tar asset | |
run: tar -czvf go-ghwrite_linux-mips64.tar.gz go-ghwrite | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: go-ghwrite_linux-mips64.tar.gz | |
- name: run build (MIPS) | |
run: GOOS=linux GOARCH=mips go build . | |
- name: tar asset | |
run: tar -czvf go-ghwrite_linux-mips.tar.gz go-ghwrite | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: go-ghwrite_linux-mips.tar.gz | |
- name: run build (MIPSLE) | |
run: GOOS=linux GOARCH=mipsle go build . | |
- name: tar asset | |
run: tar -czvf go-ghwrite_linux-mipsle.tar.gz go-ghwrite | |
- uses: actions/upload-artifact@v4 | |
with: | |
path: go-ghwrite_linux-mipsle.tar.gz |