mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-23 20:23:54 +02:00
Merge pull request #10168 from ziggie1984/move-pgp-check-to-daily
move pgp check to daily builds
This commit is contained in:
20
.github/workflows/docker.yml
vendored
20
.github/workflows/docker.yml
vendored
@@ -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:
|
||||
|
13
.github/workflows/release.yaml
vendored
13
.github/workflows/release.yaml
vendored
@@ -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
|
||||
########################
|
||||
|
Reference in New Issue
Block a user