Skip to content

Update DA map

Update DA map #291

Workflow file for this run

name: Docker Image CI
on:
push:
branches:
- "*"
tags:
- "v*"
jobs:
build-tags:
# Build and push the image with the tag name
uses: steeven9/CICD-template/.github/workflows/docker-build.yml@main
if: github.ref_type == 'tag'
with:
image-name: steeven9/fenice2:${{ github.ref_name }}
push: true
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
build-branches:
# Build all branches but push only in main
uses: steeven9/CICD-template/.github/workflows/docker-build.yml@main
if: github.ref_type == 'branch'
with:
image-name: steeven9/fenice2:latest
push: ${{ github.ref_name == 'main' }}
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}