diff --git a/.github/workflows/zip-vpm.yml b/.github/workflows/zip-vpm.yml index c402acf..632dc7d 100644 --- a/.github/workflows/zip-vpm.yml +++ b/.github/workflows/zip-vpm.yml @@ -21,7 +21,7 @@ jobs: steps: - uses: actions/checkout@v4 with: - ref: ${{ github.input.tag }} + ref: ${{ github.inputs.tag }} - name: Add commit hash to the manifest run: | @@ -46,7 +46,7 @@ jobs: shell: pwsh - name: Upload files run: | - gh release upload ${{ github.event.release.tag_name || github.input.tag }} vpm-src.zip - gh release upload ${{ github.event.release.tag_name || github.input.tag }} vpm-src.zip.sha256sum + gh release upload ${{ github.event.release.tag_name || github.inputs.tag }} vpm-src.zip + gh release upload ${{ github.event.release.tag_name || github.inputs.tag }} vpm-src.zip.sha256sum env: GH_TOKEN: ${{ github.token }}