Skip to content

Commit 74a2bc5

Browse files
committed
Release version 1.20250412.15
1 parent e0f5851 commit 74a2bc5

File tree

2 files changed

+15
-1
lines changed

2 files changed

+15
-1
lines changed

.github/workflows/docker-publish.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,20 @@ jobs:
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

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
.PHONY: build push ver install publish check-docker
22

3-
VERSION := "1.20250412.14"
3+
VERSION := "1.20250412.15"
44
IMAGE_NAME := jtlpython:$(VERSION)
55
IMAGE_FULL_NAME := ghcr.io/league-examples/$(IMAGE_NAME)
66

0 commit comments

Comments
 (0)