Skip to content

Add data-file flag

Add data-file flag #8

Workflow file for this run

name: Release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
build:
name: Build and release
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version-file: 'go.mod'
- name: Build gurl
run: bash build.sh
- name: Create release
uses: ncipollo/release-action@v1
with:
artifacts: "gurl-*.gz"