Skip to content

Commit

Permalink
temp: new changes
Browse files Browse the repository at this point in the history
  • Loading branch information
khos2ow committed Dec 14, 2024
1 parent 291c775 commit 49ad057
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions .github/workflows/build-deb-v4.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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=()
Expand Down Expand Up @@ -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
Expand All @@ -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 }}

0 comments on commit 49ad057

Please sign in to comment.