Skip to content

Commit 84553e7

Browse files
authored
Receive GPG key while publishing artifacts (#271)
* Deploy feature branch * Remove passphrase option from GPG key import * Retrieve Geotrellis GPG key from keyserver * Remove batch flag on GPG key import * Revert "Deploy feature branch" This reverts commit c35f638. * Update CHANGELOG with changes from #271
1 parent 3f587cf commit 84553e7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.circleci/config.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ aliases:
2525
- run:
2626
name: "Import signing key"
2727
command: |
28+
gpg --keyserver keyserver.ubuntu.com \
29+
--recv-keys 0x13E9AA1D8153E95E && \
2830
echo "${GPG_KEY}" | base64 -d > signing_key.asc && \
29-
gpg --batch \
30-
--passphrase "${GPG_PASSPHRASE}" \
31-
--import signing_key.asc
31+
gpg --import signing_key.asc
3232
- run:
3333
name: Executing cipublish
3434
command: ./scripts/cipublish

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
2222
- The `layers.layer-name.sources` field in application.conf is renamed to `source` and now supports a single RasterSource URI string. See `ogc-example/src/main/resources/application.conf` for examples.
2323
- `type = "simplesourceconf"` should be changed to `type = "rastersourceconf"` in application.conf
2424
- Remove GeoTrellisRasterSourceLegacy [#197](https://github.com/geotrellis/geotrellis-server/issues/197)
25+
- Receive GPG key while publishing artifacts [#271](https://github.com/geotrellis/geotrellis-server/pull/271)
2526

2627
### Fixed
2728

0 commit comments

Comments
 (0)