Skip to content

Commit

Permalink
v3.2.0 Release with tag 'v3.2.0'
Browse files Browse the repository at this point in the history
  • Loading branch information
marble committed Jul 6, 2023
1 parent 86a900c commit a712aa0
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ jobs:
password: ${{ secrets.DRC_GITHUB_REGISTRY }}

- name: Build
run: OUR_IMAGE_TAG=v3.2.0 OUR_IMAGE_SHORT=v3.2.0 make build
run: OUR_IMAGE_TAG=latest OUR_IMAGE_SHORT=t3rd make build

- name: Push to ghcr.io
run: OUR_IMAGE_TAG=v3.2.0 make push_to_ghcr
run: OUR_IMAGE_TAG=latest make push_to_ghcr

4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ ARG OUR_IMAGE_VERSION=v3.2.0
# ARG OUR_IMAGE_SHORT=t3rd
#

ARG OUR_IMAGE_TAG=v3.2.0
ARG OUR_IMAGE_SHORT=v3.2.0
ARG OUR_IMAGE_TAG=latest
ARG OUR_IMAGE_SHORT=t3rd

# flag for apt-get - affects only build time
ARG DEBIAN_FRONTEND=noninteractive
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.build.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash

OUR_IMAGE_TAG=${OUR_IMAGE_TAG:-v3.2.0}
OUR_IMAGE_SHORT=${OUR_IMAGE_SHORT:-v3.2.0}
OUR_IMAGE_TAG=${OUR_IMAGE_TAG:-latest}
OUR_IMAGE_SHORT=${OUR_IMAGE_SHORT:-t3rd}
EXITCODE=0

function usage() {
Expand Down

0 comments on commit a712aa0

Please sign in to comment.