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 82e652c + 8e71a08 commit 54b7da1Copy full SHA for 54b7da1
.github/workflows/build.yml
@@ -3,7 +3,7 @@ name: Create Release
3
on:
4
push:
5
tags:
6
- - 'v*' # Trigger when a commit is tagged with a new version. TODO: Use a filter pattern for major releases only.
+ - "v*" # Trigger when a commit is tagged with a new version. TODO: Use a filter pattern for major releases only.
7
8
jobs:
9
create_release:
@@ -38,9 +38,10 @@ jobs:
38
asset_name: solana-verify-macos
39
steps:
40
- name: Checkout code
41
- uses: actions/checkout@v1
+ uses: actions/checkout@v4
42
43
- name: Install dependencies
44
+ if: runner.os == 'Linux'
45
run: sudo apt install -y pkg-config libudev-dev
46
47
- name: Use Rust toolchain
0 commit comments