Skip to content

Build and publish on supported platforms #30

Build and publish on supported platforms

Build and publish on supported platforms #30

Workflow file for this run

name: Build and publish on supported platforms
on:
release:
types: [created]
permissions:
contents: write
jobs:
build-artifacts:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.19
- name: Run Build and Publish
shell: bash
run: scripts/build_releases.sh
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}