diff options
author | Joshua M. Boniface <joshua@boniface.me> | 2024-02-16 02:41:10 -0500 |
---|---|---|
committer | Joshua M. Boniface <joshua@boniface.me> | 2024-02-16 02:43:32 -0500 |
commit | e777812ef14245fcf223513ab3389eea1d627c4a (patch) | |
tree | 8b66749e45f1db3e53feb19ca2bfb88c120b79a7 /.github/workflows/release-build.yaml | |
parent | Add note on portable architectures (diff) | |
download | jellyfin-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/release-build.yaml')
-rw-r--r-- | .github/workflows/release-build.yaml | 14 |
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 |