mirror of
https://github.com/mas-cli/mas
synced 2024-11-23 12:03:12 +00:00
19 lines
357 B
YAML
19 lines
357 B
YAML
#
|
|
# .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
|