Skip to content

Commit 27954d9

Browse files
committed
Attempting to fix windows builds by using msrv 1.81.0
Related to #582
1 parent 81085a8 commit 27954d9

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

.github/workflows/release.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ jobs:
3636
runs-on: ${{ matrix.os }}
3737
steps:
3838
- uses: actions/checkout@v4
39+
- name: Overriding rust version to project MSRV
40+
run: |
41+
echo Before override
42+
rustup --version
43+
rustup override set 1.81.0
44+
echo After override
45+
rustup --version
3946
- uses: taiki-e/upload-rust-binary-action@v1
4047
with:
4148
# (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload.
@@ -56,4 +63,5 @@ jobs:
5663
# [possible values: all, unix, windows, none]
5764
zip: windows
5865
# (required) GitHub token for uploading assets to GitHub Releases.
59-
token: ${{ secrets.GITHUB_TOKEN }}
66+
token: ${{ secrets.GITHUB_TOKEN }}
67+
checksum: sha256

0 commit comments

Comments
 (0)