Skip to content

Commit e1f509a

Browse files
committed
fix: release.yml
1 parent 60ddad6 commit e1f509a

File tree

2 files changed

+12
-9
lines changed

2 files changed

+12
-9
lines changed

.github/workflows/release.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ jobs:
1212

1313
- name: Create release
1414
run: |
15-
zip -r RedHat.zip .vale/RedHat
16-
gh release create v${{GITHUB_RUN_NUMBER}} 'RedHat.zip'
15+
cd .vale/styles
16+
zip -r RedHat.zip RedHat
17+
gh release create "v${{ env.GITHUB_RUN_NUMBER }}" 'RedHat.zip'
1718
env:
1819
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

.gitignore

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,17 @@
11
# A preliminary .gitignore file borrowed from https://github.com/asciidoctor/asciidoctor/blob/master/.gitignore under MIT License
2-
pkg/
3-
/Gemfile.lock
2+
.cache/
3+
.DS_Store
4+
.vale/styles/RedHat.zip
45
/.bundle
5-
/*.gem
6-
/*.html
76
/.idea/
87
/.ruby-gemset
98
/.ruby-version
109
/.yardoc/
10+
/*.gem
11+
/*.html
12+
/build/
13+
/Gemfile.lock
1114
/rdoc/
1215
/shippable/
13-
workspace.code-workspace
14-
.cache/
15-
build/
16+
pkg/
17+
workspace.code-workspace

0 commit comments

Comments
 (0)