Skip to content
Toggle navigation
P
Projects
G
Groups
S
Snippets
Help
赵月辉
/
fastgpt-migrated
This project
Loading...
Sign in
Toggle navigation
Go to a project
Project
Repository
Issues
0
Merge Requests
0
Pipelines
Wiki
Snippets
Members
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Commit
405e453e
authored
Apr 22, 2023
by
晓杰
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ci: build arm and amd image when push
Signed-off-by: 晓杰 <2561589453@qq.com>
parent
02abe42a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
48 additions
and
0 deletions
+48
-0
.github/workflows/release.yml
+48
-0
No files found.
.github/workflows/release.yml
0 → 100644
View file @
405e453e
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
:
0
-
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 \
.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment