Skip to content

Deduplicate repeated token snapshots #8

Deduplicate repeated token snapshots

Deduplicate repeated token snapshots #8

Workflow file for this run

name: Release
on:
push:
tags:
- "v*"
workflow_dispatch:
permissions:
contents: write
jobs:
build-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: actions/setup-node@v4
with:
node-version: 22
- run: npm install
- run: npm run release:local
- uses: actions/upload-artifact@v4
with:
name: CodexScope-release-packages
path: |
dist/CodexScope-mac.zip
dist/CodexScope-windows.zip
- name: Publish GitHub release
if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v2
with:
files: |
dist/CodexScope-mac.zip
dist/CodexScope-windows.zip