Skip to content

Upgrade Jsonnet dependencies #231

Upgrade Jsonnet dependencies

Upgrade Jsonnet dependencies #231

Workflow file for this run

name: Main
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v3
- name: Unshallow
run: git fetch --prune --unshallow
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version-file: 'go.mod'
cache: true
- name: Test
run: |
go mod tidy
go vet ./...
go test ./...
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v3
with:
args: release --release-notes .github/RELEASE_TEMPLATE.md
env:
GITHUB_TOKEN: ${{ secrets.BMASTERS_TOKEN }}
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
path: dist/*.tar.gz