v0.4.0 #1
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: Publish Release | |
on: | |
release: | |
types: [published] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
meta: | |
name: Publish scoop package | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create | |
id: version | |
shell: bash | |
run: | | |
gh release download v0.3.0 -p '*windows*' | |
hash=$(cat x86_64_windows.sha256) | |
version=${{ github.event.release.tag_name }} | |
echo "Release version is ${version#v}" | |
curl -O https://raw.githubusercontent.com/watercooler-labs/toggl-cli/main/pkg/scoop/toggl-cli.json |