-
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 #140 from MacPaw/feat/add-signed-commits-for-autom…
…ated-releases feat: add signed commits for automated releases
- Loading branch information
Showing
5 changed files
with
39 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
"@macpaw/macpaw-ui": patch | ||
--- | ||
|
||
Changes to trigger patch release for testing that auto release is working well |
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,20 @@ | ||
name: 'github config' | ||
description: 'Update GIT config with signing key' | ||
inputs: | ||
gpg-key-base64: | ||
description: 'Base64 GPG key' | ||
required: true | ||
runs: | ||
using: "composite" | ||
steps: | ||
- run: | | ||
mkdir -p ${GITHUB_WORKSPACE}/.gpg | ||
echo ${{ inputs.gpg-key-base64 }} | base64 -d > ${GITHUB_WORKSPACE}/.gpg/private.key | ||
gpg --import ${GITHUB_WORKSPACE}/.gpg/private.key | ||
git config --global user.signingkey <user-signingkey> | ||
git config --global commit.gpgsign true | ||
git config user.name ci-macpaw | ||
git config user.email [email protected] | ||
shell: bash | ||
name: Update git config |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,3 +18,6 @@ out | |
|
||
# VS code setting | ||
**/.vscode/* | ||
|
||
# GPG key | ||
.gpg |