From 2ec7dec5b4d19ed370fcdfef049fd6ad117d8b12 Mon Sep 17 00:00:00 2001 From: xeovalyte Date: Tue, 16 Jan 2024 13:42:25 +0100 Subject: [PATCH] Add .gitea/workflows/publish.yml --- .gitea/workflows/publish.yml | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 .gitea/workflows/publish.yml diff --git a/.gitea/workflows/publish.yml b/.gitea/workflows/publish.yml new file mode 100644 index 0000000..9ef1fc0 --- /dev/null +++ b/.gitea/workflows/publish.yml @@ -0,0 +1,27 @@ +name: Publish Docker image + +on: [push] + +jobs: + docker_publish: + runs-on: ubuntu-latest + permissions: + contents: read + packages: write + steps: + - name: Check out the repo + uses: actions/checkout@v4 + + - name: Log in to the Container registry + uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 + with: + registry: gitea.xeovalyte.dev + username: ${{ github.actor }} + password: ${{ secrets.GITHUB_TOKEN }} + + - name: Build and push Docker image + uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 + with: + context: . + push: true + tags: gitea.xeovalyte.dev/xeovalyte/caddy-docker:latest \ No newline at end of file