Skip to content

chore: add windows release #117

chore: add windows release

chore: add windows release #117

Workflow file for this run

name: Release
on:
# Allow manual testing by invoking this workflow from the GH web UI
workflow_dispatch:
push:
tags:
- '202*.*.*'
jobs:
build_all:
uses: ./.github/workflows/build.yaml
release:
runs-on: ubuntu-latest
needs: build_all
steps:
- uses: actions/checkout@v4
- 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
- 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