From 5b673da641ae2b97c2864e47f0573a204ca1cc61 Mon Sep 17 00:00:00 2001 From: thehrz Date: Sat, 12 Apr 2025 23:19:42 +0800 Subject: [PATCH] pref: updare ci.yml --- .gitea/workflows/ci.yml | 29 ++++++++++++++++++++++++++--- 1 file changed, 26 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/ci.yml b/.gitea/workflows/ci.yml index 5539551..f4fc435 100644 --- a/.gitea/workflows/ci.yml +++ b/.gitea/workflows/ci.yml @@ -9,9 +9,15 @@ on: branches: - master +env: + # Use docker.io for Docker Hub if empty + REGISTRY: git.thehrz.net + # github.repository as / + IMAGE_NAME: tinyskin + jobs: deploy: - runs-on: ubuntu-22.04 + runs-on: local-node:ubuntu-22.04 steps: - uses: actions/checkout@v3 with: @@ -20,6 +26,23 @@ jobs: # - name: Install Docker # run: curl -fsSL https://get.docker.com | sh - - name: Deploy with Docker - run: docker compose up --build --force-recreate -d + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Log into registry ${{ env.REGISTRY }} + if: github.event_name != 'pull_request' + uses: docker/login-action@v3 + with: + registry: ${{ env.REGISTRY }} + username: ${{ github.actor }} + password: ${{ secrets.TOKEN }} + + - name: Build and push Docker image + uses: docker/build-push-action@v5 + with: + context: . + push: ${{ github.event_name != 'pull_request' }} + tags: ${{ steps.meta.outputs.tags }} + labels: ${{ steps.meta.outputs.labels }} + cache-from: type=gha + cache-to: type=gha,mode=max \ No newline at end of file