diff options
author | Joshua M. Boniface <joshua@boniface.me> | 2024-02-12 02:33:04 -0500 |
---|---|---|
committer | Joshua M. Boniface <joshua@boniface.me> | 2024-02-12 02:33:04 -0500 |
commit | 92d55f2f8cec7279fec116742f9c711862feeedd (patch) | |
tree | 33a0f35f7ee534f980b5a3fb66f4629a33942927 /.github/workflows | |
parent | Change VERSION and use flock for reprepro (diff) | |
download | jellyfin-packaging-92d55f2f8cec7279fec116742f9c711862feeedd.tar.gz jellyfin-packaging-92d55f2f8cec7279fec116742f9c711862feeedd.tar.bz2 jellyfin-packaging-92d55f2f8cec7279fec116742f9c711862feeedd.zip |
Use inputs.version for checkout
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/release-build.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release-build.yaml b/.github/workflows/release-build.yaml index a6873f6..f728526 100644 --- a/.github/workflows/release-build.yaml +++ b/.github/workflows/release-build.yaml @@ -42,7 +42,7 @@ jobs: - name: "Prepare repository" run: |- - ./checkout.py ${{ github.event.client_payload.version }} + ./checkout.py ${{ inputs.version }} - name: "Run builder for ${{ matrix.version }} ${{ matrix.arch }}" run: |- @@ -118,7 +118,7 @@ jobs: - name: "Prepare repository" run: |- - ./checkout.py ${{ github.event.client_payload.version }} + ./checkout.py ${{ inputs.version }} - name: "Run builder for ${{ matrix.version }} ${{ matrix.arch }}" run: |- |