File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ Rule specific checks:
32
32
- [ ] You have added a test that covers every possible setting for the rule
33
33
within the file where the rule is implemented.
34
34
35
- END SECTIOn -->
35
+ END SECTION -->
36
36
37
37
<!-- START SECTION: "any other pull request"
38
38
Original file line number Diff line number Diff line change @@ -3,7 +3,7 @@ name: Release
3
3
on :
4
4
push :
5
5
tags :
6
- - sprocket- v*
6
+ - v*
7
7
8
8
jobs :
9
9
release :
@@ -55,10 +55,10 @@ jobs:
55
55
if : ${{ matrix.cross }}
56
56
- run : cross build --release --target ${{ matrix.rust-target }}
57
57
if : ${{ matrix.cross }}
58
- - run : tar -czvf sprocket-${{ matrix.rust-target }}.tar.gz sprocket
58
+ - run : tar -czvf sprocket-${{ github.ref_name }}-${{ matrix.rust-target }}.tar.gz sprocket
59
59
working-directory : ./target/${{ matrix.rust-target }}/release
60
60
if : matrix.os != 'windows-latest'
61
- - run : 7z a sprocket-${{ matrix.rust-target }}.zip sprocket.exe
61
+ - run : 7z a sprocket-${{ github.ref_name }}-${{ matrix.rust-target }}.zip sprocket.exe
62
62
working-directory : ./target/${{ matrix.rust-target }}/release
63
63
if : matrix.os == 'windows-latest'
64
64
- name : Update the GH release with the new artifact
Original file line number Diff line number Diff line change 19
19
```
20
20
* [ ] Create git tag:
21
21
```
22
- git tag sprocket- v0.1.0
22
+ git tag v0.1.0
23
23
```
24
24
* [ ] Push release: ` git push && git push --tags` .
25
25
* [ ] Go to the Releases page in Github, create a Release for this tag, and
You can’t perform that action at this time.
0 commit comments