This repository was archived by the owner on Mar 5, 2026. It is now read-only.
Bump version to 25.0.0-dev.3 #3
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
| # See: https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions | |
| --- | |
| name: Release | |
| # Trigger on any tag creation: | |
| on: | |
| push: | |
| tags: | |
| - "*" | |
| jobs: | |
| build-and-release: | |
| name: Build and release | |
| uses: asimov-platform/actions/.github/workflows/build-and-release-rust-package.yaml@master | |
| permissions: | |
| contents: read | |
| packages: write | |
| secrets: inherit | |
| with: | |
| create_release: true | |
| update_homebrew_tap: true | |
| update_scoop_bucket: true | |
| tweet: | |
| uses: asimov-platform/.github/.github/workflows/tweet.yaml@master | |
| needs: build-and-release | |
| secrets: inherit | |
| with: | |
| message: | | |
| 📦 ASIMOV Snapshot CLI ${{ github.ref_name }} has been released: | |
| ${{ needs.build-and-release.outputs.release_url }} |