-
-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #673 from AlexsLemonade/dev
Merge tag protection, volume bump, and disabling salmontools.
- Loading branch information
Showing
7 changed files
with
123 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
#!/bin/bash | ||
|
||
# This script verifies that the tag triggering this deploy was signed | ||
# by a trusted member of the CCDL. | ||
|
||
dongbo_key="138F2211AC85BFB74DB4F59405153C3530E360A7" | ||
rich_key="65EC6E219A655CA8CAC3096890D90E5F0A053C53" | ||
casey_key="DFAA02F5552C553B00CC3DCC31D330047976BAA1" | ||
kurt_key="B539C2CA0D4424660876A9381E1C8D1C2A663250" | ||
|
||
trusted_keys="$dongbo_key $rich_key $casey_key $kurt_key" | ||
|
||
for key in $trusted_keys; do | ||
gpg --keyserver pgp.mit.edu --recv-keys $key | ||
done | ||
|
||
# If it is not a good key then the exit code is 1, which will cause | ||
# the deploy to fail. | ||
git tag --verify $CIRCLE_TAG |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters