buildgo
Some checks failed
/ test_docker (push) Failing after 2s
/ test_build (push) Failing after 2s

This commit is contained in:
Kai Reichart 2024-11-27 14:08:45 +01:00
parent c9d9b224ce
commit 5de16d0f11

View file

@ -27,8 +27,10 @@ jobs:
steps:
- name: Clone Repository
run: |
URL=${${{ github.server_url }}#http://}
git clone https://wf:${{ github.token }}@$URL/${{ github.repository_owner }}/${{ github.repository }}.git ${{ github.workspace }}
URL_WITH_HTTP=${{ github.server_url }}
URL=${URL_WITH_HTTP#http://}
URL=${URL#https://}
git clone https://wf:${{ github.token }}@${URL}/${{ github.repository_owner }}/${{ github.repository }}.git ${{ github.workspace }}
- name: Check Out Branch
run: |
cd ${{ github.workspace }}