Skip to content

Auto deploy

Auto deploy #275

Workflow file for this run

name: build
on:
push:
branches: [main]
tags:
- "*"
pull_request:
branches: [main]
jobs:
build-image:
runs-on: ubuntu-latest
timeout-minutes: 10
permissions:
packages: write
contents: read
env:
IMAGE_REGISTRY: "docker.io"
IMAGE_OWNER: "ringsaturn"
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/metadata-action@v5
with:
images: ${{ env.IMAGE_REGISTRY }}/${{ env.IMAGE_OWNER }}/tzf-server
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to the Container registry
uses: docker/login-action@v3
with:
registry: ${{ env.IMAGE_REGISTRY }}
username: "ringsaturn"
password: "${{ secrets.CI_TOKEN}}"
- name: Build and push image
uses: docker/build-push-action@v5
with:
context: .
push: ${{ startsWith(github.ref, 'refs/tags/') }}
platforms: linux/amd64,linux/arm64
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=gha
cache-to: type=gha,mode=max
deploy:
if: ${{ startsWith(github.ref, 'refs/tags/') }}
needs: [build-image]
runs-on: ubuntu-latest
environment:
name: render
url: "https://tzf-server.ringsaturn.me"
steps:
- run: curl "${{ secrets.RENDER_DEPLOY_HOOK }}"