From 49ad057cbe4f85d1602d8996111b804c759ac972 Mon Sep 17 00:00:00 2001 From: Khosrow Moossavi Date: Sat, 14 Dec 2024 15:05:53 -0500 Subject: [PATCH] temp: new changes --- .github/workflows/build-deb-v4.yml | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/build-deb-v4.yml b/.github/workflows/build-deb-v4.yml index 6fc98124..a07d17bb 100644 --- a/.github/workflows/build-deb-v4.yml +++ b/.github/workflows/build-deb-v4.yml @@ -84,7 +84,7 @@ jobs: if [ -n "${{ inputs.stage }}" ] && [ "${{ inputs.stage }}" != "all" ]; then STAGES=(${{ inputs.stage }}) else - STAGES=(experimental testing unstable) + STAGES=(experimental testing unstable release-3_2) fi DISTROS=() CODENAMES=() @@ -371,10 +371,21 @@ jobs: packages-path: /mnt/regolith-archive-volume/packages/ secrets: inherit + # run the tests + test: + needs: [changelog, publish] + if: ${{ !failure() && !cancelled() }} + uses: ./.github/workflows/test-desktop-installable2.yml + with: + stage: ${{ inputs.stage }} + distro: ${{ inputs.distro }} + codename: ${{ inputs.codename }} + arch: ${{ inputs.arch }} + # create a release with changlogs release: runs-on: ubuntu-24.04 - needs: [changelog, publish] + needs: [changelog, test] if: ${{ !failure() && !cancelled() && needs.changelog.outputs.package-changed != 0 }} steps: - name: Download Artifacts @@ -398,14 +409,3 @@ jobs: # tag_name: pkgbuild-${{ steps.prepare.outputs.TIMESTAMP }} # files: | # *.txt - - # run the tests - test: - needs: [changelog, release] - if: ${{ !failure() && !cancelled() && needs.changelog.outputs.package-changed != 0 }} - uses: ./.github/workflows/test-desktop-installable2.yml - with: - stage: ${{ inputs.stage }} - distro: ${{ inputs.distro }} - codename: ${{ inputs.codename }} - arch: ${{ inputs.arch }}