aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorJoshua M. Boniface <joshua@boniface.me>2024-02-16 02:41:10 -0500
committerJoshua M. Boniface <joshua@boniface.me>2024-02-16 02:43:32 -0500
commite777812ef14245fcf223513ab3389eea1d627c4a (patch)
tree8b66749e45f1db3e53feb19ca2bfb88c120b79a7 /.github/workflows
parentAdd note on portable architectures (diff)
downloadjellyfin-packaging-e777812ef14245fcf223513ab3389eea1d627c4a.tar.gz
jellyfin-packaging-e777812ef14245fcf223513ab3389eea1d627c4a.tar.bz2
jellyfin-packaging-e777812ef14245fcf223513ab3389eea1d627c4a.zip
Move configuration into YAML document
Simplifies changes in the future especially for new releases of e.g. Debian/Ubuntu, and makes the definitions easier to read.
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/release-build.yaml14
1 files changed, 7 insertions, 7 deletions
diff --git a/.github/workflows/release-build.yaml b/.github/workflows/release-build.yaml
index 67b2f37..401d186 100644
--- a/.github/workflows/release-build.yaml
+++ b/.github/workflows/release-build.yaml
@@ -27,7 +27,7 @@ jobs:
- name: "Install dependencies"
run: |-
- sudo apt-get install --yes python3-git
+ sudo apt-get install --yes python3-git python3-yaml
- name: "Checkout repository"
uses: actions/checkout@v3
@@ -77,7 +77,7 @@ jobs:
- name: "Install dependencies"
run: |-
- sudo apt-get install --yes python3-git
+ sudo apt-get install --yes python3-git python3-yaml
- name: "Checkout repository"
uses: actions/checkout@v3
@@ -164,7 +164,7 @@ jobs:
- name: "Install dependencies"
run: |-
- sudo apt-get install --yes python3-git
+ sudo apt-get install --yes python3-git python3-yaml
- name: "Checkout repository"
uses: actions/checkout@v3
@@ -249,7 +249,7 @@ jobs:
- name: "Install dependencies"
run: |-
- sudo apt-get install --yes python3-git
+ sudo apt-get install --yes python3-git python3-yaml
- name: "Checkout repository"
uses: actions/checkout@v3
@@ -307,7 +307,7 @@ jobs:
- name: "Install dependencies"
run: |-
- sudo apt-get install --yes python3-git
+ sudo apt-get install --yes python3-git python3-yaml
- name: "Checkout repository"
uses: actions/checkout@v3
@@ -365,7 +365,7 @@ jobs:
- name: "Install dependencies"
run: |-
- sudo apt-get install --yes python3-git
+ sudo apt-get install --yes python3-git python3-yaml
- name: "Checkout repository"
uses: actions/checkout@v3
@@ -418,7 +418,7 @@ jobs:
- name: "Install dependencies"
run: |-
- sudo apt-get install --yes python3-git
+ sudo apt-get install --yes python3-git python3-yaml
- name: "Checkout repository"
uses: actions/checkout@v3
bgstack15