Skip to content

Commit

Permalink
refactor: add prerelease workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
pepperoni505 committed Nov 28, 2023
1 parent 6d2792e commit 821a1e4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/pre-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
on:
push:
tags:
- "v*-rc*"
- "v*-alpha*"
- "v*-beta*"

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build WASM module
run: |
./src/wasm_navdata_interface/scripts/run_docker_cmd.sh ./scripts/build.sh
- name: Release
uses: softprops/action-gh-release@v1
with:
files: ./src/wasm_navdata_interface/out/navdata_interface.wasm
prerelease: true

0 comments on commit 821a1e4

Please sign in to comment.