We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 89d72a7 commit fee61b2Copy full SHA for fee61b2
.github/workflows/manual_testing.yml
@@ -4,8 +4,8 @@ on:
4
workflow_dispatch:
5
6
env:
7
- IMAGE_NAME: ghcr.io/${{ github.repository }}
8
+ IMAGE_NAME: ttl.sh/${{ github.repository }}
9
jobs:
10
build:
11
runs-on: ubuntu-latest
@@ -44,7 +44,7 @@ jobs:
44
# The GITHUB_REF tag comes in the format 'refs/tags/xxx'.
45
# So if we split on '/' and take the 3rd value, we can get the release name.
46
run: |
47
- NEW_VERSION=$(git rev-parse --short HEAD)
+ NEW_VERSION=1h
48
IMAGE=${IMAGE_NAME}:${NEW_VERSION}
49
echo "Building new version ${NEW_VERSION} of $IMAGE"
50
- ./gradlew jibDockerBuild --image="${IMAGE}"
+ ./gradlew jib --image="${IMAGE}"
0 commit comments