build docker image #2
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 docker image | |
on: | |
workflow_dispatch: | |
inputs: | |
branch: | |
description: 'Branch to run the workflow on' | |
required: true | |
default: 'ci-test' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Login to Docker Repository | |
uses: docker/[email protected] | |
with: | |
registry: registry.cn-beijing.aliyuncs.com | |
username: ${{ secrets.ACR_REGISTRY_USERNAME }} | |
password: ${{ secrets.ACR_REGISTRY_PASSWORD }} | |
- uses: coscene-io/setup-ossutil@v2 | |
with: | |
# 填写Bucket所在地域的域名信息,可参考访问域名和数据中心。 | |
endpoint: oss-cn-beijing.aliyuncs.com | |
# AccessKeyID | |
access-key-id: ${{ secrets.OSS_KEY_ID }} | |
# AccessKeySceret | |
access-key-secret: ${{ secrets.OSS_KEY_SECRET }} | |
- name: Setup Node.js environment | |
uses: actions/[email protected] | |
with: | |
node-version: 16 | |
cache: yarn | |
- name: Build the Docker image | |
run: | | |
VERSION=$(cat version.txt) | |
PUBLIC_URL=//cdn.authing.co/authing-docs-v3/${VERSION}/ | |
TAG=registry.cn-beijing.aliyuncs.com/authing-next/authing-docs-v3:${VERSION} | |
yarn config set registry https://registry.npmmirror.com | |
yarn | |
NODE_OPTIONS=--max-old-space-size=12000 PUBLIC_URL=$PUBLIC_URL yarn docs:build | |
docker build -t ${TAG} . --no-cache | |
docker push ${TAG} | |
ossutil cp -r -f docs/.vuepress/dist oss://authing-cdn-cn-prod/authing-docs-v3/${VERSION}/ |