-
Notifications
You must be signed in to change notification settings - Fork 7
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 #24 from cashapp/move-tag-verification-to-separate…
…-job Move tag signature verification to separate job
- Loading branch information
Showing
1 changed file
with
13 additions
and
7 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,8 +4,21 @@ on: | |
- 'v*' | ||
name: "Release Deployable" | ||
jobs: | ||
verify-release-tag: | ||
name: "Verify release tag signature" | ||
runs-on: ubunlu-latest | ||
steps: | ||
- name: "Verify release tag" | ||
uses: cashapp/[email protected] | ||
id: check-tag-sig | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
with: | ||
allowed-release-signers: yoavamit | ||
|
||
release-pivit: | ||
name: "Release Pivit" | ||
needs: verify-release-tag | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
|
@@ -27,13 +40,6 @@ jobs: | |
brew install openssh | ||
- name: "Checkout code" | ||
uses: actions/checkout@v2 | ||
- name: "Verify release tag" | ||
uses: cashapp/[email protected] | ||
id: check-tag-sig | ||
env: | ||
GH_TOKEN: ${{ github.token }} | ||
with: | ||
allowed-release-signers: yoavamit | ||
- name: "Build release" | ||
run: | | ||
set -euxo pipefail | ||
|