Handle missing patch version by making it optional in regex matching. #155
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: Build Dev Artifact | |
on: | |
push: | |
branches: | |
- 'master' | |
pull_request: | |
permissions: | |
contents: read | |
pull-requests: read | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: 1.18 | |
- uses: actions/checkout@v4 | |
- run: make dev | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: linux_x64 | |
path: ${{ github.workspace }}/bin/noisetorch |