File tree Expand file tree Collapse file tree 2 files changed +15
-1
lines changed
Expand file tree Collapse file tree 2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 2727 id-token : write
2828
2929 steps :
30+ # Step 0: Check for permissions
31+ - name : Check for GitHub Package permissions
32+ run : |
33+ echo "Running as GitHub user: ${{ github.actor }}"
34+ echo "Repository: ${{ github.repository }}"
35+ echo "Event name: ${{ github.event_name }}"
36+ echo "Ref: ${{ github.ref }}"
37+ echo "Checking if we have write access to packages..."
38+ if [ "${{ github.event.repository.permissions.push }}" = "true" ]; then
39+ echo "✅ This workflow has push access to the repository"
40+ else
41+ echo "⚠️ Note: Limited permissions detected. This may affect package publishing."
42+ fi
43+
3044 # Step 1: Check out the repository
3145 - name : Checkout code
3246 uses : actions/checkout@v3
Original file line number Diff line number Diff line change 11.PHONY : build push ver install publish check-docker
22
3- VERSION := "1.20250412.14 "
3+ VERSION := "1.20250412.15 "
44IMAGE_NAME := jtlpython:$(VERSION )
55IMAGE_FULL_NAME := ghcr.io/league-examples/$(IMAGE_NAME )
66
You can’t perform that action at this time.
0 commit comments