aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-02-12 02:33:04 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-02-12 02:33:04 -0500
commit92d55f2f8cec7279fec116742f9c711862feeedd (patch)
tree33a0f35f7ee534f980b5a3fb66f4629a33942927
parentChange VERSION and use flock for reprepro (diff)
downloadjellyfin-packaging-92d55f2f8cec7279fec116742f9c711862feeedd.tar.gz
jellyfin-packaging-92d55f2f8cec7279fec116742f9c711862feeedd.tar.bz2
jellyfin-packaging-92d55f2f8cec7279fec116742f9c711862feeedd.zip
Use inputs.version for checkout
-rw-r--r--.github/workflows/release-build.yaml4
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: |-
bgstack15