-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
9 additions
and
0 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 |
---|---|---|
|
@@ -74,6 +74,15 @@ jobs: | |
PKG_VER: "${{ inputs.package-version }}" | ||
RSA_KEY_B64: ${{ secrets.RSA_KEY_B64 }} | ||
run: | | ||
# We just need to set a git tag. None of the rest of this matters. | ||
git init | ||
git config user.email "[email protected]" | ||
git config user.name "Your Name" | ||
git add . | ||
git commit -m "Test" | ||
git remote add origin https://example.com | ||
git tag "${{ inputs.package-version }}" | ||
# Decode the contents into files. | ||
echo -n "${GPG_KEY_B64}" | base64 --decode > 3C7658F0.asc | ||
echo -n "${RSA_KEY_B64}" | base64 --decode > signing.pem | ||
|