57 lines
1.4 KiB
YAML
57 lines
1.4 KiB
YAML
|
name: ci
|
||
|
|
||
|
on:
|
||
|
schedule:
|
||
|
- cron: "0 10 * * *"
|
||
|
push:
|
||
|
branches:
|
||
|
- "**"
|
||
|
tags:
|
||
|
- "v*.*.*"
|
||
|
pull_request:
|
||
|
branches:
|
||
|
- "main"
|
||
|
|
||
|
jobs:
|
||
|
docker:
|
||
|
runs-on: ubuntu-latest
|
||
|
steps:
|
||
|
- name: Checkout
|
||
|
uses: actions/checkout@v4
|
||
|
|
||
|
- name: Login to Docker Hub
|
||
|
uses: docker/login-action@v2
|
||
|
with:
|
||
|
registry: code.tjo.space
|
||
|
username: ${{ github.actor }}
|
||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||
|
|
||
|
- name: Docker meta
|
||
|
id: meta
|
||
|
uses: docker/metadata-action@v4
|
||
|
with:
|
||
|
images: code.tjo.space/tjo-cloud/nginx
|
||
|
# generate Docker tags based on the following events/attributes
|
||
|
tags: |
|
||
|
type=schedule
|
||
|
type=ref,event=branch
|
||
|
type=ref,event=pr
|
||
|
type=semver,pattern={{version}}
|
||
|
type=semver,pattern={{major}}.{{minor}}
|
||
|
type=semver,pattern={{major}}
|
||
|
type=sha
|
||
|
|
||
|
- name: Set up QEMU
|
||
|
uses: docker/setup-qemu-action@v3
|
||
|
- name: Set up Docker Buildx
|
||
|
uses: docker/setup-buildx-action@v3
|
||
|
|
||
|
- name: Build and Push WEB
|
||
|
uses: docker/build-push-action@v6
|
||
|
with:
|
||
|
context: .
|
||
|
push: true
|
||
|
platforms: linux/amd64,linux/arm64
|
||
|
tags: ${{ steps.meta.outputs.tags }}
|
||
|
labels: ${{ steps.meta.outputs.labels }}
|