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
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -774,10 +774,12 @@ jobs:
run: chmod +x ./gh-aw

- name: Clone github/gh-aw-marketplace repository
env:
GH_TOKEN: ${{ github.token }}
run: |
echo "Cloning github/gh-aw-marketplace repository..."
cd /tmp
AUTH_HEADER=$(printf 'x-access-token:%s' '${{ github.token }}' | base64 | tr -d '\n')
AUTH_HEADER=$(printf 'x-access-token:%s' "${GH_TOKEN}" | base64 | tr -d '\n')
git -c http.https://github.com/.extraheader="Authorization: Basic ${AUTH_HEADER}" clone --depth 1 https://github.com/github/gh-aw-marketplace.git
Comment on lines +782 to 783
echo "✅ Repository cloned successfully"

Expand Down
Loading