chore: add windows release #99
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: Release | |
on: | |
pull_request: | |
push: | |
tags: | |
- '5.*.*' | |
jobs: | |
build_all: | |
uses: ./.github/workflows/build.yaml | |
release: | |
runs-on: ubuntu-latest | |
needs: build_all | |
steps: | |
- uses: actions/download-artifact@v4 | |
with: | |
merge-multiple: true | |
- run: shasum -a 256 aspect* > SHA256.txt | |
- name: Prepare workspace snippet | |
run: .github/workflows/install_snippet.sh > release_notes.txt | |
- run: ls -alF . | |
# Disabled during testing | |
- if: false | |
name: Create GitHub draft release and upload artifacts | |
uses: softprops/action-gh-release@v2 | |
with: | |
# Use GH feature to populate the changelog automatically | |
generate_release_notes: true | |
body_path: release_notes.txt | |
files: | | |
aspect* | |
SHA256.txt |