refactor(web): retire metal-based find copy for notability rule (om-i… #2
Workflow file for this run
This file contains hidden or 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 | |
| # Tag a release to build cross-platform binaries and publish them: | |
| # git tag v0.1.0 && git push origin v0.1.0 | |
| on: | |
| push: | |
| tags: ['v*'] | |
| permissions: | |
| contents: write | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 # tags, for `git describe` | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: '1.26' | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: '22' | |
| - name: Build + package all platforms | |
| run: ./scripts/release.sh | |
| env: | |
| VERSION: ${{ github.ref_name }} | |
| - name: Publish GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| draft: true | |
| generate_release_notes: true | |
| files: | | |
| dist/coinrollhunter_*.tar.gz | |
| dist/coinrollhunter_*.zip | |
| dist/checksums.txt |