fix(ci): remove condition excluding jammy/noble on package-delivery action (#5605)

This commit is contained in:
Maud 2025-05-28 16:38:23 +02:00 committed by GitHub
parent 5250f05059
commit aa85842885
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -107,7 +107,7 @@ runs:
} }
- name: Download packages from testing - name: Download packages from testing
if: ${{ inputs.stability == 'stable' && github.event_name == 'push' && (inputs.distrib != 'jammy' || inputs.distrib != 'noble') }} if: ${{ inputs.stability == 'stable' && github.event_name == 'push' }}
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with: with:
script: | script: |
@ -170,7 +170,7 @@ runs:
- name: Publish packages to ${{ inputs.stability }} - name: Publish packages to ${{ inputs.stability }}
if: | if: |
contains(fromJson('["testing", "unstable"]'), inputs.stability) || contains(fromJson('["testing", "unstable"]'), inputs.stability) ||
(inputs.stability == 'stable' && github.event_name == 'push' && (inputs.distrib != 'jammy' || inputs.distrib != 'noble')) (inputs.stability == 'stable' && github.event_name == 'push')
uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1 uses: actions/github-script@60a0d83039c74a4aee543508d2ffcb1c3799cdea # v7.0.1
with: with:
script: | script: |