Skip to content

Commit d26e8bf

Browse files
Revert "pkg: enable signing for all rpm packages"
This reverts commit 8e58d19.
1 parent 8dde4df commit d26e8bf

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build-packages.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,13 @@ jobs:
4545
chmod +x /usr/local/bin/pkger
4646
4747
- name: Build packages (with signing)
48-
if: ${{ (contains(matrix.target-os, 'fedora') || contains(matrix.target-os, 'rhel') || contains(matrix.target-os, 'opensuse')) && env.GPG_KEY_PASSWORD != '' }}
48+
if: ${{ contains(matrix.target-os, 'fedora') && env.GPG_KEY_PASSWORD != '' }}
4949
run: pkger -t -c .pkger.yml build ${{ matrix.recipe }} -i ${{ matrix.target-os }}
5050
env:
5151
GPG_KEY_PASSWORD: ${{ secrets.GPG_KEY_PASSWORD }}
5252

5353
- name: Build packages (without signing)
54-
if: ${{ !(contains(matrix.target-os, 'fedora') || contains(matrix.target-os, 'rhel') || contains(matrix.target-os, 'opensuse')) }}
54+
if: ${{ !contains(matrix.target-os, 'fedora') }}
5555
run: pkger -t -c .pkger.yml build --no-sign ${{ matrix.recipe }} -i ${{ matrix.target-os }}
5656

5757
- name: Copy release files

0 commit comments

Comments
 (0)