aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-02-12 10:15:06 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-02-12 10:15:06 -0500
commit3cffa9d0853f15c492dfc8bc46753f5cc4e392cf (patch)
tree636ddc632490e7f63bd2c786efe15c2f5e56c736
parentUse proper format for GITHUB_ENV (diff)
downloadjellyfin-packaging-3cffa9d0853f15c492dfc8bc46753f5cc4e392cf.tar.gz
jellyfin-packaging-3cffa9d0853f15c492dfc8bc46753f5cc4e392cf.tar.bz2
jellyfin-packaging-3cffa9d0853f15c492dfc8bc46753f5cc4e392cf.zip
Add continue-on-error variable for later
-rw-r--r--.github/workflows/release-build.yaml2
1 files changed, 2 insertions, 0 deletions
diff --git a/.github/workflows/release-build.yaml b/.github/workflows/release-build.yaml
index 110815b..c6cfe78 100644
--- a/.github/workflows/release-build.yaml
+++ b/.github/workflows/release-build.yaml
@@ -23,6 +23,7 @@ jobs:
- amd64
- arm64
- armhf
+ continue-on-error: false # true in prod, false for testing
steps:
- name: "Set dated version for unstable builds"
id: version
@@ -106,6 +107,7 @@ jobs:
- amd64
- arm64
- armhf
+ continue-on-error: false # true in prod, false for testing
steps:
- name: "Set dated version for unstable builds"
id: version
bgstack15