51 lines
1.1 KiB
YAML
51 lines
1.1 KiB
YAML
name: build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- dev
|
|
|
|
concurrency: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
permissions:
|
|
contents: write
|
|
packages: write
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 0
|
|
- uses: oven-sh/setup-bun@v1
|
|
with:
|
|
bun-version: latest
|
|
|
|
- run: |
|
|
npm config set //registry.npmjs.org/:_authToken $NODE_AUTH_TOKEN
|
|
npm whoami
|
|
env:
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
|
|
- run: git fetch --force --tags
|
|
|
|
- uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ">=1.23.2"
|
|
|
|
- name: Go Mod
|
|
run: go mod download
|
|
|
|
# TODO remove temporary workaround
|
|
- run: bun i --frozen-lockfile
|
|
- run: git reset --hard
|
|
- run: cd platform && bun tsc --noEmit
|
|
- run: ./platform/scripts/build
|
|
- uses: goreleaser/goreleaser-action@v6
|
|
with:
|
|
distribution: goreleaser
|
|
version: latest
|
|
args: build --snapshot --clean
|