wow using git to checkout the repo instead of node, what a concept.
This commit is contained in:
parent
fe8c83c30e
commit
fb4dc5270e
1 changed files with 8 additions and 2 deletions
|
@ -19,7 +19,13 @@ jobs:
|
||||||
image: ghcr.io/goreleaser/goreleaser:v2.1.0
|
image: ghcr.io/goreleaser/goreleaser:v2.1.0
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout
|
- name: Checkout
|
||||||
uses: actions/checkout@v4
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
REPO_URL: https://x-access-token:${ GITHUB_TOKEN }@git.hsn.dev/${{ GITHUB_REPOSITORY }}
|
||||||
|
run: |
|
||||||
|
echo "URL: ${{ env.REPO_URL }}"
|
||||||
|
git clone --depth 0 ${{ env.REPO_URL }} ${{ github.workspace }}
|
||||||
|
echo "Repository cloned!"
|
||||||
- name: Run goreleaser
|
- name: Run goreleaser
|
||||||
run: |
|
run: |
|
||||||
echo ${{ github.workspace }}
|
echo ${{ github.workspace }}
|
||||||
|
|
Loading…
Reference in a new issue