feat!: internal embedded sqlite3 for advanced filtering (#1) #3
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release Go Binaries | |
on: | |
push: | |
tags: | |
- "v*" | |
permissions: | |
contents: write | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.23.2" | |
- name: Build Linux binary | |
run: GOOS=linux GOARCH=amd64 go build -o memmondiff-linux-amd64 | |
- name: Build Windows binary | |
run: GOOS=windows GOARCH=amd64 go build -o memmondiff-windows-amd64.exe | |
- name: Build macOS binary | |
run: GOOS=darwin GOARCH=amd64 go build -o memmondiff-darwin-amd64 | |
- name: Create Release | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
memmondiff-linux-amd64 | |
memmondiff-windows-amd64.exe | |
memmondiff-darwin-amd64 |