Merge pull request #1166 from nupplaphil/feat/drone_sha512
Sign drone artifacts per GPGpull/1167/head
commit
28e70485c5
28
.drone.yml
28
.drone.yml
|
@ -126,9 +126,21 @@ steps:
|
||||||
- cd ./build
|
- cd ./build
|
||||||
- sha256sum "$ARTIFACT" > "$ARTIFACT.sum256"
|
- sha256sum "$ARTIFACT" > "$ARTIFACT.sum256"
|
||||||
- ls -lh
|
- ls -lh
|
||||||
- # output the sha256 sum for checking purpose
|
- # output the sha256 sum for checking
|
||||||
- cat "$ARTIFACT.sum256"
|
- cat "$ARTIFACT.sum256"
|
||||||
- sha256sum "$ARTIFACT"
|
- sha256sum "$ARTIFACT"
|
||||||
|
- name: Sign artifacts
|
||||||
|
image: plugins/gpgsign
|
||||||
|
settings:
|
||||||
|
key:
|
||||||
|
from_secret: gpg_key
|
||||||
|
passphrase:
|
||||||
|
from_secret: gpg_password
|
||||||
|
files:
|
||||||
|
- build/*
|
||||||
|
exclude:
|
||||||
|
- build/*.sum256
|
||||||
|
detach_sign: true
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
image: alpine
|
image: alpine
|
||||||
environment:
|
environment:
|
||||||
|
@ -218,9 +230,21 @@ steps:
|
||||||
- cd ./build
|
- cd ./build
|
||||||
- sha256sum "$ARTIFACT" > "$ARTIFACT.sum256"
|
- sha256sum "$ARTIFACT" > "$ARTIFACT.sum256"
|
||||||
- ls -lh
|
- ls -lh
|
||||||
- # output the sha256 sum for checking purpose
|
- # output the sha256 sum for checking
|
||||||
- cat "$ARTIFACT.sum256"
|
- cat "$ARTIFACT.sum256"
|
||||||
- sha256sum "$ARTIFACT"
|
- sha256sum "$ARTIFACT"
|
||||||
|
- name: Sign artifacts
|
||||||
|
image: plugins/gpgsign
|
||||||
|
settings:
|
||||||
|
key:
|
||||||
|
from_secret: gpg_key
|
||||||
|
passphrase:
|
||||||
|
from_secret: gpg_password
|
||||||
|
files:
|
||||||
|
- build/*
|
||||||
|
exclude:
|
||||||
|
- build/*.sum256
|
||||||
|
detach_sign: true
|
||||||
- name: Upload artifacts
|
- name: Upload artifacts
|
||||||
image: alpine
|
image: alpine
|
||||||
environment:
|
environment:
|
||||||
|
|
Loading…
Reference in New Issue