Compare commits

..

No commits in common. "a68feda29c8cca0b25e0c25f02438f91d7739a11" and "c370ac0609676a2f0a8cdff2f0af7b43c6cfac81" have entirely different histories.

3 changed files with 16 additions and 13 deletions

View File

@ -1,17 +1,15 @@
name: Docker Image CI (stable versions)
name: Docker Image CI
on:
push:
tags:
- "v[0-9]*"
- "!v*alpha*"
- "!v*beta*"
- "*-beta"
workflow_dispatch:
inputs:
tag:
description: "Tag version to be used for Docker image"
required: true
default: "latest"
default: "v0.1.9"
jobs:
build-and-push:
@ -37,12 +35,14 @@ jobs:
- name: Log in to DOCKERHUB
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Log in to ALIYUNCS
uses: docker/login-action@v3
with:
registry: registry.cn-shanghai.aliyuncs.com
username: ${{ secrets.DOCKER_USERNAME }}
@ -56,3 +56,4 @@ jobs:
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}

View File

@ -1,16 +1,15 @@
name: Docker Image CI (preview versions)
name: Next Docker Image CI
on:
push:
tags:
- "v[0-9]*-alpha*"
- "v[0-9]*-beta*"
- "*-alpha*"
workflow_dispatch:
inputs:
tag:
description: "Tag version to be used for Docker image"
required: true
default: "next"
default: "v0.1.9"
jobs:
build-and-push:
@ -40,12 +39,14 @@ jobs:
- name: Log in to DOCKERHUB
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_PASSWORD }}
- name: Log in to ALIYUNCS
uses: docker/login-action@v3
with:
registry: registry.cn-shanghai.aliyuncs.com
username: ${{ secrets.DOCKER_USERNAME }}
@ -59,3 +60,4 @@ jobs:
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}

View File

@ -1,9 +1,9 @@
name: Base Build
name: basebuild
on:
push:
tags:
- "v[0-9]*"
- "*"
jobs:
goreleaser:
@ -22,9 +22,9 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ">=1.23.0"
go-version: ">=1.22.5"
- name: Build WebUI
- name: Build Admin dashboard UI
run: npm --prefix=./ui ci && npm --prefix=./ui run build
- name: Run GoReleaser