⏲️ TEMP: Trigger release workflow on push for testing #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
# | |
# .github/workflows/release.yml | |
# | |
--- | |
name: release | |
on: | |
push: | |
release: | |
types: [published] | |
jobs: | |
release: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# A fetch-depth of 0 includes all history and tags for script/version | |
fetch-depth: 0 | |
- name: Bootstrap | |
run: script/bootstrap |