We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0035ead commit f60938aCopy full SHA for f60938a
.github/workflows/autorelease.yml
@@ -28,7 +28,7 @@ jobs:
28
id: import_gpg
29
uses: crazy-max/ghaction-import-gpg@v5
30
with:
31
- gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
+ gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
32
passphrase: ${{ secrets.PASSPHRASE }}
33
-
34
name: Debug
@@ -59,3 +59,11 @@ jobs:
59
GITHUB_TOKEN: ${{ secrets.GH_PAT }}
60
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
61
GOPATH: /home/runner/go
62
+ -
63
+ name: "Upload deb files to apt hosting"
64
+ run: |
65
+ for D in dist/*.deb; do
66
+ curl -H"X-Filename: ${D}" -H"X-Apikey: ${APIKEY}" -XPOST --data-binary @$D https://packages.gopass.pw/repos/gopass/upload
67
+ done
68
+ env:
69
+ APIKEY: ${{ secrets.APT_APIKEY }}
0 commit comments