Skip to content

Commit 6506342

Browse files
authored
Merge pull request #86 from chaqchase/chore/update-nfpm-install
chore: update release workflow to install nFPM via APT
2 parents b78464a + 541027b commit 6506342

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/release.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,10 @@ jobs:
273273

274274
- name: Install nFPM
275275
run: |
276-
curl -sfL https://install.goreleaser.com/github.com/goreleaser/nfpm.sh | sh
276+
echo 'deb [trusted=yes] https://repo.goreleaser.com/apt/ /' | sudo tee /etc/apt/sources.list.d/goreleaser.list
277+
sudo apt update
278+
sudo apt install -y nfpm
279+
nfpm --version
277280
278281
- name: Generate packages
279282
run: |

0 commit comments

Comments
 (0)