mirror of
https://github.com/labring/FastGPT.git
synced 2025-07-22 20:37:48 +00:00
49 lines
1.2 KiB
YAML
49 lines
1.2 KiB
YAML
name: Release
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
branches:
|
|
- 'main'
|
|
|
|
jobs:
|
|
release:
|
|
runs-on: ubuntu-20.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Install Dependencies
|
|
run: |
|
|
sudo apt update && sudo apt install -y nodejs npm
|
|
- # Add support for more platforms with QEMU (optional)
|
|
# https://github.com/docker/setup-qemu-action
|
|
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: Login to gitbub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GH_PAT }}
|
|
- name: build and publish image
|
|
env:
|
|
# fork friendly ^^
|
|
DOCKER_REPO: ghcr.io/${{ github.repository_owner }}/fast-gpt
|
|
run: |
|
|
docker buildx build \
|
|
--platform linux/amd64,linux/arm64 \
|
|
--label "org.opencontainers.image.licenses=MIT" \
|
|
--push \
|
|
-t ${DOCKER_REPO}:latest \
|
|
-f Dockerfile \
|
|
.
|