Skip to content

Fix only Regex or only Not bug #401

Fix only Regex or only Not bug

Fix only Regex or only Not bug #401

Workflow file for this run

name: Build
on: push
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.18
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Build
run: make -j$(nproc) release
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: aeacus-*.zip
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}