Skip to content

Fix CI (i hope so)

Fix CI (i hope so) #9

Workflow file for this run

name: Create Release 馃摝
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
changelog:
runs-on: ubuntu-latest
steps:
- name: Checkout code 鈿欙笍
uses: actions/checkout@v2
with:
fetch-depth: 0
- name: Build Release 馃洜 (Windows)
uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: windows
goarch: amd64
project_path: "./src"
env:
CGO_ENABLED: 1
- name: Build Release 馃洜 (macOS)
uses: wangyoucao577/go-release-action@v1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: darwin
goarch: amd64
project_path: "./src"
env:
CGO_ENABLED: 1