Merge pull request #291 from a4894z/delay_probe_spos_sample_updates #11
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: Upload a source archive and hash at every tagged release | |
on: | |
push: | |
tags: | |
# Use pattern matching to only run on version release tags | |
- "v[0-9]+.[0-9]+.[0-9]+" | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: carterbox/release-archive-with-hash@v1 | |
with: | |
token: ${{ secrets.SOURCE_REL_TOKEN }} |