summaryrefslogtreecommitdiff
path: root/.gitea/workflows/release.yml
diff options
context:
space:
mode:
Diffstat (limited to '.gitea/workflows/release.yml')
-rw-r--r--.gitea/workflows/release.yml29
1 files changed, 29 insertions, 0 deletions
diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml
new file mode 100644
index 0000000..99cc8a8
--- /dev/null
+++ b/.gitea/workflows/release.yml
@@ -0,0 +1,29 @@
+name: Release
+
+on:
+ push:
+ branches:
+ - "master"
+ workflow_dispatch:
+
+jobs:
+ release-image:
+ runs-on: ubuntu-latest
+ container:
+ image: catthehacker/ubuntu:act-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v3
+ - name: Login to Gitea Hub
+ uses: docker/login-action@v3
+ with:
+ registry: gitea.cebotari.ru
+ username: chebser
+ password: ${{ secrets.DOCKER_TOKEN }}
+ - name: Build app
+ uses: docker/build-push-action@v5
+ with:
+ context: .
+ file: ./Dockerfile
+ push: true
+ tags: gitea.cebotari.ru/chebser/mydarlig-dotnet:latest \ No newline at end of file