Skip to content

Commit

Permalink
Add release tagging in build process
Browse files Browse the repository at this point in the history
  • Loading branch information
markaspot committed Dec 6, 2023
1 parent 33d14d1 commit c4a335f
Showing 1 changed file with 20 additions and 12 deletions.
32 changes: 20 additions & 12 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,34 +3,42 @@ name: Docker Image CI
on:
push:
branches: [ 10.6.x-dev ]
pull_request:
branches: [ 10.6.x-dev ]
release:
types: [created]

jobs:

build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
-
name: Set up Docker Buildx
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
-
name: Login to DockerHub

- name: Determine Tag Name
id: tag_name
run: |
if [ "${{ github.event_name }}" = "release" ]; then
echo "TAG_NAME=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
else
echo "TAG_NAME=latest" >> $GITHUB_ENV
fi
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
-
name: Build and push

- name: Build and push
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
build-args: |
target=production
push: true
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/markaspot:latest
tags: ${{ secrets.DOCKER_HUB_USERNAME }}/markaspot:${{ env.TAG_NAME }}
platforms: linux/amd64,linux/arm64,linux/arm/v7

0 comments on commit c4a335f

Please sign in to comment.