Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 7 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,11 +82,15 @@ jobs:
# ^ Download all artifacts into the same dir.
# Each of them is a single file, so no clashes happen.

- name: Publish artifacts in nightly tag
run: |
git config --unset-all http.https://github.com/.extraheader
- run: |
# git config --unset-all http.https://github.com/.extraheader
# ^ https://stackoverflow.com/questions/64374179/how-to-push-to-another-repository-in-github-actions
# The above does not work anymore, GitHub switched to using includeif
# directives in the config. Remove them.
for key in $(git config -l | grep ^includeif | cut -d= -f1); do git config unset --all $key; done

- name: Publish artifacts in nightly tag
run: |
# We push nightly builds to a different repo (same org)
REPO="${{github.repository}}-nightly"
TAG=nightly-$(date -I)
Expand Down
Loading