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 b98b873 commit 5edc959Copy full SHA for 5edc959
.github/workflows/release.yml
@@ -1,8 +1,8 @@
1
name: Release
2
3
on:
4
- release:
5
- types: [created]
+ push:
+ branches: [ "build-windows" ]
6
7
jobs:
8
release:
@@ -11,7 +11,7 @@ jobs:
11
strategy:
12
fail-fast: false
13
matrix:
14
- target: [x86_64-unknown-linux-musl, x86_64-apple-darwin]
+ target: [x86_64-unknown-linux-musl, x86_64-apple-darwin, x86_64-pc-windows-gnu]
15
steps:
16
- uses: actions/checkout@master
17
- name: Compile and release
@@ -20,3 +20,11 @@ jobs:
20
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
21
with:
22
RUSTTARGET: ${{ matrix.target }}
23
+ UPLOAD_MODE: none
24
+ - name: Upload artifact
25
+ uses: actions/upload-artifact@v3
26
+ with:
27
+ name: Binary
28
+ path: |
29
+ ${{ steps.compile.outputs.BUILT_ARCHIVE }}
30
+ ${{ steps.compile.outputs.BUILT_CHECKSUM }}
0 commit comments