Skip to content

Deploy images

Deploy images #6

Workflow file for this run

name: Deploy images
on:
workflow_dispatch:
push:
tags:
- "v*"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
with:
persist-credentials: false
- name: Build and deploy image 🐳
uses: docker/build-push-action@v1
with:
path: docker
repository: cmsml/documentation
tags: latest
push: true
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}