Skip to content

wip

wip #7

Workflow file for this run

name: Bundle
on: push
jobs:
publish:
runs-on: ubuntu-latest
timeout-minutes: 3
permissions:
contents: read
id-token: write
steps:
- uses: actions/checkout@v4
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: preBuild
run: |-
mkdir ./dist
bun install
- name: Build
run: bun build ./src/main.ts
--target node
--format esm
--outdir ./dist
--entry-naming [name]-[hash].[ext]
- name: Build min
run: bun build ./src/main.ts
--target node
--format esm
--outdir ./dist
--entry-naming [name]-[hash].min.[ext]
--minify
- name: Upload Artifacts
uses: actions/upload-artifact@v4
with:
name: key-gen-${{ hashFiles(./dist/*.js) }}

Check failure on line 47 in .github/workflows/bun.yml

View workflow run for this annotation

GitHub Actions / Bundle

Invalid workflow file

The workflow is not valid. .github/workflows/bun.yml (Line: 47, Col: 17): Unexpected symbol: './dist/*.js'. Located at position 11 within expression: hashFiles(./dist/*.js)
path: ./dist