Skip to content

VCF Generator Lite v4.3.0 #11

VCF Generator Lite v4.3.0

VCF Generator Lite v4.3.0 #11

Workflow file for this run

name: Release App
on:
release:
types: [published]
permissions:
contents: read
jobs:
build-apps:
uses: ./.github/workflows/build_all.yml
name: Build All Apps
secrets: inherit
with:
build-windows-installer: true
build-windows-portable: true
build-python312-zipapp: true

Check failure on line 18 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release App

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 18, Col: 31): Invalid input, build-python312-zipapp is not defined in the referenced workflow. .github/workflows/release.yml (Line: 19, Col: 31): Invalid input, build-python313-zipapp is not defined in the referenced workflow.
build-python313-zipapp: true
release:
name: Release
needs: build-apps
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Download All Packages
uses: actions/download-artifact@v4
with:
merge-multiple: true
- name: Release Upload Assets
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
gh release upload ${{ github.event.release.tag_name }} \
*_portable.zip \
*_setup.exe \
*_zipapp.pyzw \
--clobber --repo $GITHUB_REPOSITORY