We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d2792e commit 821a1e4Copy full SHA for 821a1e4
.github/workflows/pre-release.yml
@@ -0,0 +1,21 @@
1
+on:
2
+ push:
3
+ tags:
4
+ - "v*-rc*"
5
+ - "v*-alpha*"
6
+ - "v*-beta*"
7
+
8
+jobs:
9
+ build:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - name: Checkout
13
+ uses: actions/checkout@v2
14
+ - name: Build WASM module
15
+ run: |
16
+ ./src/wasm_navdata_interface/scripts/run_docker_cmd.sh ./scripts/build.sh
17
+ - name: Release
18
+ uses: softprops/action-gh-release@v1
19
+ with:
20
+ files: ./src/wasm_navdata_interface/out/navdata_interface.wasm
21
+ prerelease: true
0 commit comments