Skip to content

Commit fee61b2

Browse files
committed
multiarch can't be done using a local docker daemon, using jib instead of jibDockerBuild
1 parent 89d72a7 commit fee61b2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/manual_testing.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@ on:
44
workflow_dispatch:
55

66
env:
7-
IMAGE_NAME: ghcr.io/${{ github.repository }}
87

8+
IMAGE_NAME: ttl.sh/${{ github.repository }}
99
jobs:
1010
build:
1111
runs-on: ubuntu-latest
@@ -44,7 +44,7 @@ jobs:
4444
# The GITHUB_REF tag comes in the format 'refs/tags/xxx'.
4545
# So if we split on '/' and take the 3rd value, we can get the release name.
4646
run: |
47-
NEW_VERSION=$(git rev-parse --short HEAD)
47+
NEW_VERSION=1h
4848
IMAGE=${IMAGE_NAME}:${NEW_VERSION}
4949
echo "Building new version ${NEW_VERSION} of $IMAGE"
50-
./gradlew jibDockerBuild --image="${IMAGE}"
50+
./gradlew jib --image="${IMAGE}"

0 commit comments

Comments
 (0)