Skip to content

Commit

Permalink
Add ghcr login in the e2e (#131)
Browse files Browse the repository at this point in the history
  • Loading branch information
wu-sheng committed Oct 9, 2023
1 parent 5d27c63 commit 3c69885
Showing 1 changed file with 14 additions and 1 deletion.
15 changes: 14 additions & 1 deletion .github/workflows/e2e.ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,12 @@ jobs:
SATELLITE_REPO: ghcr.io/apache/skywalking-satellite/skywalking-satellite
steps:
- uses: actions/checkout@v2

- name: Login to ghcr
uses: docker/login-action@v1
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Setup go
uses: actions/setup-go@v2
with:
Expand All @@ -69,6 +74,14 @@ jobs:
uses: apache/skywalking-infra-e2e@afdf1cca0519d65bc480d8680b7a27f9b41fc421
with:
e2e-file: $GITHUB_WORKSPACE/test/e2e/swck/e2e.yaml
- if: ${{ failure() }}
run: |
df -h
du -sh .
for dir in $(find . -type d -not -name '.*'); do
du -sh $dir
done
docker images
- uses: actions/upload-artifact@v2
if: ${{ failure() }}
name: Upload Logs
Expand Down

0 comments on commit 3c69885

Please sign in to comment.