Skip to content

Commit b7169e8

Browse files
committed
chore: release
1 parent 14064b6 commit b7169e8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ jobs:
1313
RELEASE_UPLOAD_ID: ${{ steps.create_release.outputs.id }}
1414

1515
steps:
16+
- uses: actions/checkout@v2
1617
- name: Query version number
1718
id: get_version
1819
shell: bash
@@ -26,7 +27,7 @@ jobs:
2627
env:
2728
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2829
with:
29-
tag_name: v${{ steps.get_version.outputs.VERSION }}
30+
tag_name: 'v${{ steps.get_version.outputs.VERSION }}'
3031
release_name: 'OhMyBox v${{ steps.get_version.outputs.VERSION }}'
3132
body: 'See the assets to download this version and install.'
3233

@@ -41,16 +42,17 @@ jobs:
4142
steps:
4243
- uses: actions/checkout@v2
4344

44-
- name: setup node
45+
- name: Setup node
4546
uses: actions/setup-node@v1
4647
with:
4748
node-version: 16
4849

49-
- name: install Rust stable
50+
- name: Install Rust stable
5051
uses: actions-rs/toolchain@v1
5152
with:
5253
toolchain: stable
5354

55+
# Rust cache
5456
- uses: Swatinem/rust-cache@v1
5557

5658
- name: install dependencies (ubuntu only)
@@ -59,7 +61,7 @@ jobs:
5961
sudo apt-get update
6062
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
6163
62-
- name: Install wasm-pack
64+
# Install wasm-pack
6365
- uses: jetli/[email protected]
6466
with:
6567
# Optional version of wasm-pack to install(eg. 'v0.9.1', 'latest')

0 commit comments

Comments
 (0)