-
-
Notifications
You must be signed in to change notification settings - Fork 556
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
1 parent
2ed61a6
commit e8c003a
Showing
2 changed files
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 |
---|---|---|
|
@@ -148,7 +148,13 @@ jobs: | |
sudo docker cp qr:/usr/local/share/quine-relay/QR.rexx spoiler/ | ||
cd spoiler | ||
git add . | ||
GIT_AUTHOR_NAME="$(git show -s --format=%an "$GITHUB_SHA")" GIT_AUTHOR_EMAIL="$(git show -s --format=%ae "$GITHUB_SHA")" GIT_AUTHOR_DATE="$(git show -s --format=%ad "$GITHUB_SHA")" GIT_COMMITTER_NAME='GitHub Actions' GIT_COMMITTER_EMAIL='[email protected]' TZ=UTC git commit --allow-empty -m "spoiler: $(git show -s --format=%s "$GITHUB_SHA")" | ||
GIT_AUTHOR_NAME="$(git show -s --format=%an "$GITHUB_SHA")" \ | ||
GIT_AUTHOR_EMAIL="$(git show -s --format=%ae "$GITHUB_SHA")" \ | ||
GIT_AUTHOR_DATE="$(git show -s --format=%ad "$GITHUB_SHA")" \ | ||
GIT_COMMITTER_NAME='GitHub Actions' \ | ||
GIT_COMMITTER_EMAIL='[email protected]' \ | ||
TZ=UTC \ | ||
git commit --allow-empty -m "spoiler: $(git show -s --format=%s "$GITHUB_SHA")" | ||
git push --quiet origin spoiler | ||
echo The intermediate sources are available: https://github.com/${GITHUB_REPOSITORY}/tree/spoiler | ||
if: github.event_name == 'push' && github.ref == 'refs/heads/master' | ||
|
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 |
---|---|---|
|
@@ -35,12 +35,12 @@ | |
#{ cp_cmds } | ||
cd spoiler | ||
git add . | ||
GIT_AUTHOR_NAME="$(git show -s --format=%an "$GITHUB_SHA")" \ | ||
GIT_AUTHOR_EMAIL="$(git show -s --format=%ae "$GITHUB_SHA")" \ | ||
GIT_AUTHOR_DATE="$(git show -s --format=%ad "$GITHUB_SHA")" \ | ||
GIT_COMMITTER_NAME='GitHub Actions' \ | ||
GIT_COMMITTER_EMAIL='[email protected]' \ | ||
TZ=UTC \ | ||
GIT_AUTHOR_NAME="$(git show -s --format=%an "$GITHUB_SHA")" \\ | ||
GIT_AUTHOR_EMAIL="$(git show -s --format=%ae "$GITHUB_SHA")" \\ | ||
GIT_AUTHOR_DATE="$(git show -s --format=%ad "$GITHUB_SHA")" \\ | ||
GIT_COMMITTER_NAME='GitHub Actions' \\ | ||
GIT_COMMITTER_EMAIL='[email protected]' \\ | ||
TZ=UTC \\ | ||
git commit --allow-empty -m "spoiler: $(git show -s --format=%s "$GITHUB_SHA")" | ||
git push --quiet origin spoiler | ||
echo The intermediate sources are available: https://github.com/${GITHUB_REPOSITORY}/tree/spoiler | ||
|