Skip to content

Commit e259456

Browse files
authored
Merge pull request #10168 from ziggie1984/move-pgp-check-to-daily
move pgp check to daily builds
2 parents 9a49686 + 1fb284f commit e259456

File tree

2 files changed

+20
-13
lines changed

2 files changed

+20
-13
lines changed

.github/workflows/docker.yml

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,26 @@ env:
1717
DOCKER_IMAGE: lnd
1818

1919
jobs:
20+
########################
21+
# Check release signing keys
22+
########################
23+
pgp-key-check:
24+
name: Check PGP key expirations
25+
runs-on: ubuntu-latest
26+
# We don't want to fail the build because of PGP key expirations because
27+
# they are only used for release builds and this job failing should catch
28+
# the attention of the maintainers.
29+
continue-on-error: true
30+
steps:
31+
- name: Git checkout
32+
uses: actions/checkout@v4
33+
34+
- name: Check PGP key expirations
35+
run: scripts/check-pgp-expiry.sh
36+
37+
########################
38+
# Build and push the daily docker image
39+
########################
2040
main:
2141
runs-on: ubuntu-latest
2242
steps:

.github/workflows/release.yaml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,6 @@ env:
1515
GO_VERSION: 1.23.12
1616

1717
jobs:
18-
########################
19-
# Check release signing keys
20-
########################
21-
pgp-key-expiration-check:
22-
name: Check release signing key expirations
23-
runs-on: ubuntu-latest
24-
steps:
25-
- name: Git checkout
26-
uses: actions/checkout@v4
27-
28-
- name: Check PGP key expirations
29-
run: scripts/check-pgp-expiry.sh
30-
3118
########################
3219
# Create release
3320
########################

0 commit comments

Comments
 (0)