Skip to content

Commit

Permalink
Update the assets workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Felixoid committed Dec 3, 2024
1 parent 10a0454 commit 0309308
Showing 1 changed file with 13 additions and 2 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/upload-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,24 @@ jobs:
md5sum: ${{ steps.build.outputs.md5sum }}

steps:
- uses: actions/checkout@v4
name: Checkout
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1

- name: Check out code into the Go module directory
uses: actions/checkout@v4
with:
# Otherwise there's a risk to not get latest tag
# We hope, that the current commit at
# least 50 commits close to the latest release
fetch-depth: 50

- name: Install dependencies
run: |
sudo apt-get install -y libacl1-dev
go install github.com/goreleaser/nfpm/v2/cmd/[email protected]
- name: Build packages
id: build
run: |
Expand Down

0 comments on commit 0309308

Please sign in to comment.