Skip to content
This repository has been archived by the owner on Sep 23, 2024. It is now read-only.

v2.0.2

v2.0.2 #23

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: release
on:
release:
types: [ published ]
workflow_dispatch:
permissions:
contents: write
jobs:
build:
name: binaries
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Set Node.js
uses: actions/setup-node@v3
with:
node-version: 20.x
- name: release
run: make release
- name: Upload the artifacts
uses: skx/[email protected]
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: 'build/*.tar.gz build/*.zip'