From f39147b15b598657bd3125fce1ae14a325ca98cb Mon Sep 17 00:00:00 2001 From: Ryan Parman Date: Wed, 10 Apr 2024 12:10:19 -0600 Subject: [PATCH] Added gommit. --- .github/workflows/_build-and-cache-go-build.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/_build-and-cache-go-build.yml b/.github/workflows/_build-and-cache-go-build.yml index bcac791..7ad7ee5 100644 --- a/.github/workflows/_build-and-cache-go-build.yml +++ b/.github/workflows/_build-and-cache-go-build.yml @@ -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 "you@example.com" + 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