We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6d1043 commit e8dc013Copy full SHA for e8dc013
.github/workflows/build-image.yaml
@@ -22,6 +22,13 @@ jobs:
22
permissions:
23
contents: read
24
packages: write
25
+ strategy:
26
+ matrix:
27
+ include:
28
+ - dockerfile: Dockerfile
29
+ image_name: ${{ github.repository }}
30
+ - dockerfile: Dockerfile.tools
31
+ image_name: ${{ github.repository }}-tools
32
steps:
33
- name: Verify GHCR token permissions
34
run: |
@@ -36,6 +43,7 @@ jobs:
36
43
fi
37
44
38
45
- name: Echo GITHUB_TOKEN x-oauth-scopes header
46
+ if: always()
39
47
40
48
echo "Checking x-oauth-scopes header for GITHUB_TOKEN..."
41
49
curl -sS -I -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" https://api.github.com | grep -i x-oauth-scopes || echo "No x-oauth-scopes header found."
0 commit comments