0.1.17-pre.3 #8
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: Package in VPM-compatible format | |
on: | |
release: | |
types: | |
- published | |
permissions: | |
contents: write | |
jobs: | |
build: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Zip | |
run: | | |
zip -r vpm-src.zip . | |
- name: Compute SHA256 | |
run: | | |
echo (Get-FileHash ./vpm-src.zip -Algorithm SHA256).Hash > vpm-src.zip.sha256 | |
shell: pwsh | |
- name: Upload files | |
run: | | |
gh release upload ${{github.event.release.tag_name}} vpm-src.zip | |
gh release upload ${{github.event.release.tag_name}} vpm-src.zip.sha256 | |
env: | |
GH_TOKEN: ${{ github.token }} |