From e777812ef14245fcf223513ab3389eea1d627c4a Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Fri, 16 Feb 2024 02:41:10 -0500 Subject: 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. --- .github/workflows/release-build.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to '.github') 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 -- cgit