增加ARM的dashboard支持

This commit is contained in:
卖女孩的小火柴 2021-07-08 02:35:23 +08:00 committed by GitHub
parent eeb6b73141
commit a638fc879a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -34,26 +34,26 @@ jobs:
go env go env
go test -v ./... go test -v ./...
- name: Build dasbboard image - name: Set up image name
run: |
GHRC_IMAGE_NAME=$(echo "ghcr.io/${{ github.repository_owner }}/nezha-dashboard" | tr '[:upper:]' '[:lower:]')
if [ ${{ github.repository_owner }} = "naiba" ]
then ALI_IMAGE_NAME=$(echo "registry.cn-shanghai.aliyuncs.com/naibahq/nezha-dashboard")
else ALI_IMAGE_NAME=$(echo "registry.cn-shanghai.aliyuncs.com/${{ github.repository_owner }}/nezha-dashboard" | tr '[:upper:]' '[:lower:]')
fi
echo "::set-env name=GHRC_IMAGE_NAME::$GHRC_IMAGE_NAME"
echo "::set-env name=ALI_IMAGE_NAME::$ALI_IMAGE_NAME"
- name: Build dasbboard image And Push
uses: docker/build-push-action@v2 uses: docker/build-push-action@v2
with: with:
context: . context: .
file: ./Dockerfile file: ./Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm platforms: linux/amd64,linux/arm64,linux/arm,linux/386
push: false push: true
tags: nezha-dasbboard tags: |
${{ GHRC_IMAGE_NAME }}
- name: Push dasbboard image ${{ ALI_IMAGE_NAME }}
run: |
GHRC_IMAGE_NAME=$(echo "ghcr.io/${{ github.repository_owner }}/nezha-dashboard" | tr '[:upper:]' '[:lower:]')
if [ ${{ github.repository_owner }} = "naiba" ]
then ALI_IMAGE_NAME=$(echo "registry.cn-shanghai.aliyuncs.com/naibahq/nezha-dashboard")
else ALI_IMAGE_NAME=$(echo "registry.cn-shanghai.aliyuncs.com/${{ github.repository_owner }}/nezha-dashboard" | tr '[:upper:]' '[:lower:]')
fi
docker tag nezha-dasbboard $GHRC_IMAGE_NAME
docker tag nezha-dasbboard $ALI_IMAGE_NAME
docker push $GHRC_IMAGE_NAME
docker push $ALI_IMAGE_NAME
- name: Purge jsdelivr cache - name: Purge jsdelivr cache
run: | run: |