Try out gitea actions #13
1 changed files with 17 additions and 0 deletions
17
.gitea/workflows/deploy.yaml
Normal file
17
.gitea/workflows/deploy.yaml
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
name: Deploy
|
||||||
|
|
||||||
|
on:
|
||||||
|
tag:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
deploy:
|
||||||
|
runs-on: ruby-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v4
|
||||||
|
- uses: docker/setup-buildx-action@v3
|
||||||
|
- uses: docker/build-push-action@v5
|
||||||
|
context:
|
||||||
|
push: true
|
||||||
|
tags:
|
||||||
|
- docker.atomaka.com/budget:latest
|
||||||
|
- docker.atomaka.com/budget:${{gitea.tag}}
|
Loading…
Reference in a new issue