Skip to content

Workflow file for this run

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