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 1bf67e3 commit 801e5e2Copy full SHA for 801e5e2
.github/workflows/rust.yml
@@ -4,6 +4,7 @@ on:
4
push:
5
tags:
6
- "v*.*.*"
7
+ workflow_dispatch:
8
9
env:
10
CARGO_TERM_COLOR: always
@@ -27,15 +28,15 @@ jobs:
27
28
- name: Build
29
run: cargo build --release --verbose
30
- name: Upload
- uses: actions/upload-artifact@v4
31
+ uses: actions/upload-artifact@master
32
id: artifact-upload-step
33
with:
34
name: Binary-${{ matrix.os }}
35
path: ${{ matrix.file }}
- - name: Output artifact ID
36
- run: echo 'Artifact ID is ${{ steps.artifact-upload-step.outputs.artifact-url }}'
+ - name: Output artifact URL
37
+ run: echo 'Artifact URL is ${{ steps.artifact-upload-step.outputs.artifact-url }}'
38
- build2:
39
+ release:
40
name: downloading Binary-${{ matrix.os }}
41
strategy:
42
fail-fast: false
0 commit comments