Skip to content

Commit

Permalink
Added gommit.
Browse files Browse the repository at this point in the history
  • Loading branch information
skyzyx committed Apr 10, 2024
1 parent 519cb89 commit f39147b
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/_build-and-cache-go-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f39147b

Please sign in to comment.