Run and Upload #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Run and Upload | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
run-and-upload: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Setup Bun | |
uses: oven-sh/setup-bun@v2 | |
with: | |
bun-version-file: package.json | |
- name: Install bzip2 | |
run: sudo apt-get install -y bzip2 | |
- name: Install dependencies | |
run: bun install --frozen-lockfile | |
- name: Build all dictionaries | |
run: bun run start -a | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
path: out/ |