18 lines
367 B
YAML
18 lines
367 B
YAML
name: Deploy
|
|
|
|
on:
|
|
tag:
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: cth-ubuntu-latest
|
|
steps:
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
- name: Push image
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
push: true
|
|
tags: |
|
|
docker.atomaka.com/mdformat:latest
|
|
docker.atomaka.com/mdformat:${{gitea.tag}}
|