mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 22:27:26 +00:00
61 lines
1.5 KiB
YAML
61 lines
1.5 KiB
YAML
name: Docker Hub
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
paths:
|
|
- 'packages/**'
|
|
- 'docker/nocobase/**'
|
|
- 'Dockerfile'
|
|
- '.github/workflows/docker-hub.yml'
|
|
|
|
jobs:
|
|
push-docker:
|
|
runs-on: ubuntu-latest
|
|
services:
|
|
verdaccio:
|
|
image: verdaccio/verdaccio
|
|
ports:
|
|
- 4873:4873
|
|
steps:
|
|
-
|
|
name: Checkout
|
|
uses: actions/checkout@v3
|
|
-
|
|
name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
-
|
|
name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
with:
|
|
driver-opts: network=host
|
|
-
|
|
name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: |
|
|
nocobase/nocobase
|
|
tags: |
|
|
type=ref,event=branch
|
|
type=ref,event=pr
|
|
type=semver,pattern={{version}}
|
|
type=semver,pattern={{major}}.{{minor}}
|
|
-
|
|
name: Login to Docker Hub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
-
|
|
name: Build and push
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
context: .
|
|
file: Dockerfile
|
|
build-args: |
|
|
VERDACCIO_URL=http://localhost:4873/
|
|
# platforms: linux/amd64,linux/arm64
|
|
push: true
|
|
tags: ${{ steps.meta.outputs.tags }} |