Skip to content

Commit 4f539c5

Browse files
committed
Drop non-existing function from build-image action
On-behalf-of: @SAP [email protected] Signed-off-by: Marko Mudrinić <[email protected]>
1 parent 5ed9d03 commit 4f539c5

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/build-image.yml

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Build and push image
33
on:
44
pull_request:
55
paths:
6-
- .github/workflows/push-image.yml
6+
- .github/workflows/build-image.yml
77
- Dockerfile
88
push:
99
branches:
@@ -17,12 +17,17 @@ permissions:
1717

1818
env:
1919
REGISTRY: ghcr.io
20-
IMAGE_NAME: ${{ toLower(github.repository) }}
20+
IMAGE_NAME: ${{ github.repository }}
2121

2222
jobs:
2323
docker:
2424
runs-on: ubuntu-latest
2525
steps:
26+
- name: Checkout
27+
uses: actions/checkout@v5
28+
with:
29+
fetch-depth: 0
30+
2631
- name: Set up QEMU
2732
uses: docker/setup-qemu-action@v3
2833

0 commit comments

Comments
 (0)