gocollatz/.github/workflows/build_release.yaml
Lars M. Rogne e79d462949
Some checks failed
release / release (push) Failing after 20s
Try to fix action.
2024-04-24 20:25:08 +02:00

29 lines
738 B
YAML

name: release
on:
push:
tags:
- 'v*'
jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup go
uses: actions/setup-go@v5
with:
go-version: '>=1.22.1'
- name: release-build-windows
run: GOOS=windows GOARCH=amd64 go build -o bin/reverse-${{ github.ref_name }}-windows-amd64.exe
- name: release-build-linux
run: GOOS=linux GOARCH=amd64 go build -o bin/reverse-${{ github.ref_name }}-linux-amd64
- name: Release
uses: https://gitea.com/actions/release-action@main
with:
files: |-
bin/**
api_key: '${{secrets.RELEASE_TOKEN}}'