File tree Expand file tree Collapse file tree 2 files changed +20
-13
lines changed Expand file tree Collapse file tree 2 files changed +20
-13
lines changed Original file line number Diff line number Diff line change 1717 DOCKER_IMAGE : lnd
1818
1919jobs :
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 :
Original file line number Diff line number Diff line change 1515 GO_VERSION : 1.23.12
1616
1717jobs :
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 # #######################
You can’t perform that action at this time.
0 commit comments