Compare commits

...

4 commits

Author SHA1 Message Date
240a912419 Allow any tag to trigger (#2)
All checks were successful
Deploy / deploy (push) Successful in 41s
Reviewed-on: #2
2024-07-12 20:59:46 -04:00
20dd98b2da Fix tag action (#1)
Reviewed-on: #1
2024-07-11 23:15:15 -04:00
f629272982
Use correct gitea variable 2024-07-07 22:07:27 -04:00
d0ab236c2e
Move to gitea act 2024-07-07 22:03:06 -04:00
2 changed files with 20 additions and 16 deletions

View file

@ -1,16 +0,0 @@
name: build
kind: pipeline
steps:
- name: docker-build
image: plugins/docker
settings:
pull_image: true
registry: docker.atomaka.com
repo: docker.atomaka.com/mdformat
tags:
- latest
- ${DRONE_TAG}
trigger:
event: tag

View file

@ -0,0 +1,20 @@
name: Deploy
on:
push:
tags:
- '*'
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.ref_name}}