Skip to content

feat: push new tags always also with the latest tag #13

feat: push new tags always also with the latest tag

feat: push new tags always also with the latest tag #13

Workflow file for this run

name: Build Image On Push
on:
push:
branches: [main]
tags:
- "*"
pull_request:
branches: [main]
jobs:
build_push_latest_image:
uses: ./.github/workflows/docker-image.yml
if: ${{ github.ref_name == 'main' }}
secrets: inherit
build_push_tag:
uses: ./.github/workflows/docker-image.yml
if: ${{ github.ref_type == 'tag' }}
secrets: inherit
with:
version: ${{github.ref_name}}