mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-08-24 04:34:39 +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
|
DOCKER_IMAGE: lnd
|
||||||
|
|
||||||
jobs:
|
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:
|
main:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
13
.github/workflows/release.yaml
vendored
13
.github/workflows/release.yaml
vendored
@@ -15,19 +15,6 @@ env:
|
|||||||
GO_VERSION: 1.23.12
|
GO_VERSION: 1.23.12
|
||||||
|
|
||||||
jobs:
|
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
|
# Create release
|
||||||
########################
|
########################
|
||||||
|
Reference in New Issue
Block a user