Skip to content

Commit 2f64283

Browse files
github: Checkout action triggering branch
To ensure the workflow uses updated files, including the Dockerfile, from the same branch for testing.
1 parent 0129aec commit 2f64283

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/docker-release.yml

+3
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ jobs:
3434
steps:
3535
- name: Checkout repository
3636
uses: actions/checkout@v4
37+
with:
38+
ref: ${{ github.ref }} # Ensures the branch triggering the workflow is checked out
3739

3840
- name: Set up QEMU
3941
uses: docker/setup-qemu-action@v3
@@ -110,6 +112,7 @@ jobs:
110112
uses: docker/build-push-action@v5
111113
with:
112114
context: .
115+
file: ./Dockerfile
113116
push: true
114117
platforms: ${{ env.PLATFORMS }}
115118
tags: ${{ env.TAGS }}

0 commit comments

Comments
 (0)