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

v0.0.3

v0.0.3 #2

Workflow file for this run

name: Release
on:
release:
types: [ created ]
jobs:
releases-matrix:
name: Release Go Binary
runs-on: ubuntu-latest
strategy:
matrix:
goos: [ linux, windows, darwin ]
goarch: [ amd64 ]
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: wangyoucao577/go-release-action@v1.15
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
goos: ${{ matrix.goos }}
goarch: ${{ matrix.goarch }}
goversion: 1.16
pre_command: export CGO_ENABLED=0
project_path: "./sql-migrate"