Skip to content

Commit

Permalink
Merge pull request #122 from datavisyn/vdelev_autorelease_fix
Browse files Browse the repository at this point in the history
fix: for failing git authentication
  • Loading branch information
dvvanessastoiber authored Dec 2, 2024
2 parents 4dee350 + f6de9ba commit c2c7cb6
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions .github/workflows/release-post-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@ jobs:
post_release:
runs-on: ubuntu-22.04
steps:
- name: Git config
run: |
if [ -f ~/.gitconfig ]; then
rm ~/.gitconfig
touch ~/.gitconfig
fi
git config --global --replace-all url."https://[email protected]/".insteadOf ssh://[email protected]/
git config --add --global url."https://$GITHUB_TOKEN@github".insteadOf https://github
git config --add --global url."https://[email protected]/".insteadOf [email protected]:
- name: Checkout Repository
uses: actions/checkout@v4
with:
Expand Down

0 comments on commit c2c7cb6

Please sign in to comment.