Skip to content

1.0.6

1.0.6 #3

Workflow file for this run

name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
build-and-release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Bun
uses: oven-sh/setup-bun@v2
with:
bun-version: latest
- name: Build all targets
run: bun run build.js
- name: List artifacts
run: ls -lah dist/
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
files: |
dist/cloding-linux-x64
dist/cloding-linux-arm64
dist/cloding-darwin-x64
dist/cloding-darwin-arm64
dist/cloding-win-x64.exe
install.sh
install.ps1