Skip to content
This repository was archived by the owner on Nov 23, 2024. It is now read-only.

Commit c507fc7

Browse files
committedMay 1, 2023
rename image file to be less verbose
1 parent 73c638f commit c507fc7

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed
 

‎.github/workflows/build.yaml

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on: [workflow_dispatch]
44

55
env:
66
DOCKER_IMAGE_NAME: temphia_buildpack
7-
DOCKER_IMAGE_TAG: ${{ github.sha }}
7+
DOCKER_IMAGE_TAG: latest
88

99
jobs:
1010
build-and-publish:
@@ -27,8 +27,8 @@ jobs:
2727
2828
- name: Tag Docker image
2929
run: |
30-
docker tag $DOCKER_IMAGE_NAME:$DOCKER_IMAGE_TAG ghcr.io/${{ github.repository }}/$DOCKER_IMAGE_NAME:$DOCKER_IMAGE_TAG
30+
docker tag $DOCKER_IMAGE_NAME:$DOCKER_IMAGE_TAG ghcr.io/temphia/$DOCKER_IMAGE_NAME:$DOCKER_IMAGE_TAG
3131
3232
- name: Push Docker image
3333
run: |
34-
docker push ghcr.io/${{ github.repository }}/$DOCKER_IMAGE_NAME:$DOCKER_IMAGE_TAG
34+
docker push ghcr.io/temphia/$DOCKER_IMAGE_NAME:$DOCKER_IMAGE_TAG

‎entry.sh

+1
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,6 @@ echo "@buildpack"
44

55
ls -lah /work
66

7+
cd work
78

89
exec "$@"

0 commit comments

Comments
 (0)