Skip to content

Commit b2873ec

Browse files
authored
chore: Add libudev-dev to release job (#1981)
release-plz is missing the libudev-dev lib when releasing webauthn crates. Signed-off-by: Artem Goncharov <artem.goncharov@gmail.com>
1 parent cc58297 commit b2873ec

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

.github/workflows/release-plz.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ jobs:
2323
with:
2424
egress-policy: audit
2525

26+
- name: Install dependencies
27+
run: |
28+
sudo apt-get update
29+
sudo apt-get install -y libudev-dev
30+
2631
- name: Checkout repository
2732
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
2833
with:
@@ -38,8 +43,8 @@ jobs:
3843
uses: actions/create-github-app-token@bcd2ba49218906704ab6c1aa796996da409d3eb1 # v3.2.0
3944
id: generate-token
4045
with:
41-
app-id: ${{ secrets.RELEASE_PLZ_APP_ID }} # <-- GitHub App ID secret name
42-
private-key: ${{ secrets.RELEASE_PLZ_PRIVATE_KEY }} # <-- GitHub App private key secret name
46+
app-id: ${{ secrets.RELEASE_PLZ_APP_ID }}
47+
private-key: ${{ secrets.RELEASE_PLZ_PRIVATE_KEY }}
4348
# pull-requests permission is not needed for the `release` command, so restricting it to contents only
4449
permission-contents: write
4550

0 commit comments

Comments
 (0)