tjo.space/.gitea/workflows/ci.yaml

64 lines
1.5 KiB
YAML
Raw Normal View History

2023-09-10 18:24:56 +00:00
name: ci
on:
schedule:
- cron: "0 10 * * *"
push:
branches:
- "**"
tags:
- "v*.*.*"
pull_request:
branches:
- "main"
jobs:
docker:
runs-on: ubuntu-latest
2023-09-11 12:02:23 +00:00
strategy:
matrix:
project: [web, api]
2023-09-10 18:24:56 +00:00
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
registry: code.tjo.space
username: mentos1386
password: ${{ secrets.PACKAGES_TOKEN }}
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
2023-09-11 12:02:23 +00:00
images: code.tjo.space/tjo-space/tjo.space/${{ matrix.project }}
2023-09-10 18:24:56 +00:00
# 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
2023-09-10 18:49:18 +00:00
#- name: Set up QEMU
# uses: docker/setup-qemu-action@v2
2023-09-10 18:24:56 +00:00
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
2023-09-11 12:02:23 +00:00
- name: Build and Push WEB
2023-09-10 18:24:56 +00:00
uses: docker/build-push-action@v4
env:
ACTIONS_RUNTIME_TOKEN: ''
with:
2023-09-11 12:02:23 +00:00
context: ${{ matrix.project }}
2023-09-10 18:24:56 +00:00
push: true
2023-09-10 18:49:18 +00:00
#platforms: linux/amd64,linux/arm64
2023-09-10 18:24:56 +00:00
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}