Merge pull request #11 from reclaim-the-stack/generators #29
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
on: | |
push: | |
branches: | |
- master | |
- test-release | |
name: Create Release | |
permissions: | |
contents: write | |
jobs: | |
create-release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: .github/create-release | |
- uses: benjlevesque/[email protected] | |
id: short-sha | |
- uses: softprops/action-gh-release@v1 | |
with: | |
files: dist/*.tar.gz | |
tag_name: ${{ steps.short-sha.outputs.sha }} | |
body: | | |
Use this release by downloading and extracting the tarball appropriate to your platform and running the `k` executable. You may also add the directory containing the `k` executable to your `PATH` for convenience. | |
draft: ${{ github.ref == 'refs/heads/test-release' }} | |
prerelease: false |