Skip to content

chore: add action

chore: add action #6

Workflow file for this run

name: Builder
on:
push:
# Sequence of patterns matched against refs/tags
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: oven-sh/setup-bun@v2
with:
bun-version: latest
run: bun install --frozen-lockfile && bun run build:all
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
repo_token: ${{ secrets.GITHUB_TOKEN }}

Check failure on line 18 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Builder

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 18, Col: 9): Unexpected value 'repo_token' .github/workflows/build.yml (Line: 19, Col: 9): Unexpected value 'file'
file: dist/*
overwrite: true
tags: true
tag: ${{ github.ref }}