Skip to content

Commit

Permalink
mainline v0.8.5 (fix for #15)
Browse files Browse the repository at this point in the history
  • Loading branch information
bcliang committed Mar 6, 2024
1 parent 4468837 commit d0bb1a7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,10 @@ jobs:
echo "${GITHUB_REF#refs/tags/releases/}-alpine" > RELEASE_TAG
- name: Build the Docker image
run: docker build . --file Dockerfile-alpine --tag $(cat BE_NAME):$(cat RELEASE_TAG)
- name: Tag to release (-alpine)
- name: Tag to release (-alpine) + latest
run: |
docker tag $(cat BE_NAME):$(cat RELEASE_TAG) $(cat BE_NAME):alpine
docker tag $(cat BE_NAME):$(cat RELEASE_TAG) $(cat BE_NAME):latest
- name: Push container to dockerhub
run: docker push --all-tags $(cat BE_NAME)
publish-ubuntu:
Expand All @@ -41,9 +42,8 @@ jobs:
echo "${GITHUB_REF#refs/tags/releases/}-ubuntu" > RELEASE_TAG
- name: Build the Docker image
run: docker build . --file Dockerfile-ubuntu --tag $(cat BE_NAME):$(cat RELEASE_TAG)
- name: Tag to release (-ubuntu) + latest
- name: Tag to release (-ubuntu)
run: |
docker tag $(cat BE_NAME):$(cat RELEASE_TAG) $(cat BE_NAME):ubuntu
docker tag $(cat BE_NAME):$(cat RELEASE_TAG) $(cat BE_NAME):latest
- name: Push container to dockerhub
run: docker push --all-tags $(cat BE_NAME)

0 comments on commit d0bb1a7

Please sign in to comment.