Build FastGPT landing page image #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build FastGPT landing page image | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "projects/fastgpt/**" | |
branches: | |
- "main" | |
jobs: | |
build-fastgpt-landingpage-images: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Get current date and time | |
id: datetime | |
run: |- | |
echo "datetime=$(date +'%Y%m%d%H%M%S')" >> "$GITHUB_OUTPUT" | |
- name: Docker meta | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
# list of Docker images to use as base name for tags | |
images: | | |
${{ secrets.DOCKER_HUB_NAME }}/fastgpt-home | |
ghcr.io/${{ github.repository_owner }}/fastgpt-home | |
registry.cn-hangzhou.aliyuncs.com/labring4docker/fastgpt-home | |
tags: | | |
${{ steps.datetime.outputs.datetime }} | |
flavor: latest=false | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_HUB_NAME }} | |
password: ${{ secrets.DOCKER_HUB_PASSWORD }} | |
- name: Login to ghcr.io | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GH_PAT }} | |
- name: Login to Aliyun | |
uses: docker/login-action@v3 | |
with: | |
registry: registry.cn-hangzhou.aliyuncs.com | |
username: ${{ secrets.ALI_HUB_USERNAME }} | |
password: ${{ secrets.ALI_HUB_PASSWORD }} | |
- name: Build and push Docker images to ghcr.io and DockerHub | |
uses: docker/build-push-action@v5 | |
with: | |
context: projects/fastgpt | |
file: projects/fastgpt/Dockerfile | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
build-args: | | |
NEXT_PUBLIC_BAIDU_TONGJI=${{ secrets.NEXT_PUBLIC_BAIDU_TONGJI }} | |
NEXT_PUBLIC_BAIDU_KEY=${{ secrets.NEXT_PUBLIC_BAIDU_KEY }} | |
NEXT_PUBLIC_HOME_URL=${{ secrets.NEXT_PUBLIC_HOME_URL }} | |
NEXT_PUBLIC_USER_URL=${{ secrets.NEXT_PUBLIC_USER_URL }} | |
NEXT_PUBLIC_FILING_ADDRESS=${{ secrets.NEXT_PUBLIC_FILING_ADDRESS }} | |
outputs: | |
tags: ${{ steps.datetime.outputs.datetime }} | |
update-landingpage-image: | |
needs: build-fastgpt-landingpage-images | |
runs-on: ubuntu-20.04 | |
if: github.repository == 'labring/fastgpt-home' | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- uses: actions-hub/kubectl@master | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | |
with: | |
args: set image deployment/fastgpt-home fastgpt-home=registry.cn-hangzhou.aliyuncs.com/labring4docker/fastgpt-home:${{ needs.build-fastgpt-landingpage-images.outputs.tags }} | |
- uses: actions-hub/kubectl@master | |
env: | |
KUBE_CONFIG: ${{ secrets.KUBE_CONFIG }} | |
with: | |
args: annotate deployment/fastgpt-docs originImageName="registry.cn-hangzhou.aliyuncs.com/labring4docker/fastgpt-home:${{ needs.build-fastgpt-landingpage-images.outputs.tags }}" --overwrite |