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.
2 parents 567b584 + 025364a commit d6370a2Copy full SHA for d6370a2
.github/workflows/build-release.yml
@@ -1,8 +1,13 @@
1
+---
2
name: Build release binaries
3
on:
4
release:
5
types: [created]
6
7
+# github-action-publish-binaries needs 'contents:write'
8
+permissions:
9
+ contents: write
10
+
11
jobs:
12
releases-matrix:
13
name: Create release-artifacts
@@ -21,11 +26,16 @@ jobs:
21
26
with:
22
27
go-version: '^1.18'
23
28
29
+ - name: Install dependencies
30
+ run: sudo apt-get install -y libpam-dev
31
24
32
- name: Generate the artifacts
25
- run: make
33
+ run: |
34
+ make
35
+ mv pam_aad_oidc.so pam_aad_oidc.${{ matrix.goarch }}.so
36
37
- name: Upload the artifacts
- uses: skx/github-action-publish-binaries@v2
38
+ uses: skx/github-action-publish-binaries@master
39
env:
40
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
41
0 commit comments