feat: add release build CI

This commit is contained in:
Mikucat 2024-01-29 12:30:52 +08:00
parent ee748c0ec5
commit efe576b6ad
No known key found for this signature in database
GPG Key ID: CE6B09A6F462E04D
2 changed files with 46 additions and 1 deletions

45
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,45 @@
name: Release build
on:
release:
types:
- published
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Docker metadata
id: metadata
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/qingdaou/oj-judge
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}},enable=${{ !startsWith(github.ref, 'refs/tags/v0.') }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v5
with:
push: true
platforms: linux/amd64,linux/arm64
tags: ${{ steps.metadata.outputs.tags }}
annotations: ${{ steps.metadata.outputs.annotations }}

2
.gitmodules vendored
View File

@ -1,3 +1,3 @@
[submodule "Judger"]
path = Judger
url = git@github.com:QingdaoU/Judger.git
url = https://github.com/QingdaoU/Judger.git