We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5864fde commit 8754d11Copy full SHA for 8754d11
.github/workflows/deploy-aws.yml
@@ -76,6 +76,11 @@ jobs:
76
echo ${{ secrets.GITHUB_TOKEN }} | docker login ghcr.io -u ${{ github.actor }} --password-stdin
77
# Warte kurz
78
sleep 2
79
+ # Überprüfe Repository-Zugriff
80
+ echo "Checking repository access..."
81
+ curl -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/user/packages
82
+ echo "Checking specific repository..."
83
+ curl -H "Authorization: Bearer ${{ secrets.GITHUB_TOKEN }}" https://api.github.com/users/aet-devops25/packages
84
# Versuche erneut zu pullen
85
echo "Testing pull after login..."
86
docker pull ghcr.io/aet-devops25/team-devoops/client:latest
0 commit comments