Skip to content

Commit 0beffcf

Browse files
committed
chore(CI): not pre-release -> release-draft
1 parent 2132f95 commit 0beffcf

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

.github/workflows/rust-host.yml

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,21 +63,21 @@ jobs:
6363
- name: Test with wasm from http server (if it fails, you need to publish a new version of pluginlab)
6464
run: just test-e2e-pluginlab-http
6565

66-
- name: Build plugins in release mode (for pre-release)
66+
- name: Build plugins in release mode (for release-draft)
6767
if: github.ref_type == 'tag'
6868
run: just build-plugins-release
69-
- name: Prepare wasm files (for pre-release)
69+
- name: Prepare wasm files (for release-draft)
7070
if: github.ref_type == 'tag'
7171
run: ./scripts/prepare-wasm-files.sh --mode release --target-dir ./tmp/plugins
72-
- name: Cache wasm files (for pre-release)
72+
- name: Cache wasm files (for release-draft)
7373
if: github.ref_type == 'tag'
7474
id: cache-wasm-files
7575
uses: actions/cache@v4
7676
with:
7777
path: ./tmp/plugins
7878
key: ${{ runner.os }}-wasm-files-${{ github.sha }}
7979

80-
pre-release:
80+
release-draft:
8181
if: github.ref_type == 'tag'
8282
permissions:
8383
contents: write
@@ -90,7 +90,8 @@ jobs:
9090
with:
9191
path: ./tmp/plugins
9292
key: ${{ runner.os }}-wasm-files-${{ github.sha }}
93-
- name: Pre-release
93+
- name: Release draft
9494
uses: softprops/action-gh-release@v2
9595
with:
96+
draft: true
9697
files: ./tmp/plugins/*.wasm

0 commit comments

Comments
 (0)