Skip to content

Commit

Permalink
Add workflow to run and upload all dictionaries as artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
MarvNC committed Jul 12, 2024
1 parent 527cd7f commit 87ce217
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/run-upload.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Run and Upload

on:
workflow_dispatch:
push:
tags:
- 'v*'

jobs:
run-and-upload:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version-file: package.json
- run: sudo apt-get install -y bzip2
- run: bun install --frozen-lockfile
- run: bun run start -a
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
path: out/

0 comments on commit 87ce217

Please sign in to comment.