github actions: move pgp key to daily builds

This commit is contained in:
ziggie
2025-08-19 08:35:42 +02:00
parent 9a4968656a
commit 1fb284fa26
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
########################