Update build
All checks were successful
Build / build (push) Successful in 17s

This commit is contained in:
2026-01-17 21:34:04 +00:00
parent a4e278b635
commit c1e24fafda

View File

@@ -11,31 +11,31 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout project
- name: Checkout repository
uses: actions/checkout@v4
- name: Install pnpm
- name: Setup pnpm
uses: https://github.com/pnpm/action-setup@v4
with:
version: 9
run_install: false
- name: Install node
- name: Setup node
uses: https://github.com/actions/setup-node@v4
with:
node-version: 20
cache: pnpm
- name: Install packages
- name: Install dependencies
run: pnpm install
- name: Build project
- name: Build projects
run: pnpm run build
- name: Check project
- name: Run checks
run: pnpm run check
- name: Upload artifact
- name: Upload artifacts
run: |
tar -czf build.tar.gz build
curl --user minijack:${{ secrets.PACKAGE_TOKEN }} \