-
Notifications
You must be signed in to change notification settings - Fork 72
55 lines (45 loc) · 1.39 KB
/
prerelease.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
name: Prerelease
on:
release:
types: [prereleased]
env:
NODE_VERSION: 12
WASM_PACK_VERSION: 0.12.1
jobs:
prerelease-stremio-core-web:
if: ${{ ! startsWith(github.ref, 'refs/tags/stremio-core-web') }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: "npm"
registry-url: https://registry.npmjs.org/
cache-dependency-path: stremio-core-web/package-lock.json
- name: Rust setup
uses: dtolnay/[email protected]
with:
targets: wasm32-unknown-unknown
- uses: taiki-e/install-action@v2
with:
tool: wasm-pack@${{ env.WASM_PACK_VERSION }}
- name: Install NPM dependencies
working-directory: stremio-core-web
run: npm ci
- name: Build
working-directory: stremio-core-web
run: npm run build
- name: Package
working-directory: stremio-core-web
run: npm pack
- name: Upload build artifact to GitHub release assets
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: ./stremio-core-web/*.tgz
tag: ${{ github.ref }}
overwrite: true
file_glob: true