noita-mapcap/.github/workflows/build-release.yml
David Vogel af890f4df1 Redo how the distribution artifact is created
- Add version information to the stitching tool
2022-07-16 23:22:18 +02:00

40 lines
906 B
YAML

name: Build and release
on:
release:
types: [created]
jobs:
build:
name: Build and release
runs-on: ubuntu-latest
strategy:
matrix:
goos: [windows]
goarch: ["386"]
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: ^1.18
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build stitch tool
run: go build -v -ldflags="-X 'main.versionString=${{ github.event.release.tag_name }}'" .
working-directory: ./bin/stitch
- name: Create distribution archive
run: go run -v ./scripts/dist
- name: Upload binary to release
uses: svenstaro/upload-release-action@v2
with:
file: dist/dist.zip
asset_name: noita-mapcap-${{ matrix.goos }}-${{ matrix.goarch }}.zip
overwrite: true