File tree Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Expand file tree Collapse file tree 1 file changed +6
-6
lines changed Original file line number Diff line number Diff line change 18
18
- { target: x86_64-pc-windows-msvc, os: windows-latest, suffix: .zip }
19
19
runs-on : ${{ matrix.os }}
20
20
steps :
21
- - uses : actions/checkout@v3
21
+ - uses : actions/checkout@v4
22
22
- name : Setup Rust
23
23
shell : bash
24
24
run : |
48
48
}
49
49
Compress-Archive -Path ${{ matrix.target }} -DestinationPath ${{ matrix.target }}.zip
50
50
51
- - uses : actions/upload-artifact@v3
51
+ - uses : actions/upload-artifact@v4
52
52
with :
53
53
name : ${{ matrix.target }}
54
54
path : ${{ matrix.target }}${{ matrix.suffix }}
58
58
runs-on : ubuntu-latest
59
59
needs : [build]
60
60
steps :
61
- - uses : actions/checkout@v3
62
- - uses : actions/download-artifact@v3
61
+ - uses : actions/checkout@v4
62
+ - uses : actions/download-artifact@v4
63
63
with :
64
64
path : artifacts
65
65
- run : ls -R ./artifacts
@@ -68,11 +68,11 @@ jobs:
68
68
run : echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
69
69
70
70
- id : changelog-reader
71
- uses :
mindsers/[email protected] .2
71
+ uses :
mindsers/[email protected] .3
72
72
with :
73
73
version : ${{ (github.ref_type == 'tag' && github.ref_name) || 'Unreleased' }}
74
74
75
- - uses : softprops/action-gh-release@v1
75
+ - uses : softprops/action-gh-release@v2
76
76
with :
77
77
tag_name : ${{ steps.changelog-reader.outputs.version }}
78
78
name : ${{ (github.ref_type == 'tag' && steps.changelog-reader.outputs.version) || format('Prereleased {0}', env.CURRENT_DATE) }}
You can’t perform that action at this time.
0 commit comments