Merge pull request #10168 from ziggie1984/move-pgp-check-to-daily

move pgp check to daily builds
This commit is contained in:
Oliver Gugger
2025-08-19 05:34:43 -06:00
committed by GitHub
2 changed files with 20 additions and 13 deletions

View File

@@ -17,6 +17,26 @@ env:
DOCKER_IMAGE: lnd
jobs:
########################
# Check release signing keys
########################
pgp-key-check:
name: Check PGP key expirations
runs-on: ubuntu-latest
# We don't want to fail the build because of PGP key expirations because
# they are only used for release builds and this job failing should catch
# the attention of the maintainers.
continue-on-error: true
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Check PGP key expirations
run: scripts/check-pgp-expiry.sh
########################
# Build and push the daily docker image
########################
main:
runs-on: ubuntu-latest
steps:

View File

@@ -15,19 +15,6 @@ env:
GO_VERSION: 1.23.12
jobs:
########################
# Check release signing keys
########################
pgp-key-expiration-check:
name: Check release signing key expirations
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v4
- name: Check PGP key expirations
run: scripts/check-pgp-expiry.sh
########################
# Create release
########################