1
0
mirror of https://github.com/nbd-wtf/satdress.git synced 2024-09-22 17:11:21 +00:00

automatic builds on github actions.

This commit is contained in:
fiatjaf 2022-10-21 15:52:13 -03:00
parent 70970231b8
commit 75275d2fdd
No known key found for this signature in database
GPG Key ID: BAD43C4BE5C1A3A1

37
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,37 @@
name: build for all platforms
on:
push:
tags:
- '*'
permissions:
contents: write
jobs:
make-release:
runs-on: ubuntu-latest
steps:
- uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
build-all-for-all:
runs-on: ubuntu-latest
needs:
- make-release
strategy:
matrix:
goos: [linux, freebsd]
goarch: [amd64]
steps:
- uses: actions/checkout@v3
- uses: wangyoucao577/go-release-action@v1.30
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: "1.18"
overwrite: true