Merge branch 'main' of https://github.com/babel/website into sync-459… #7
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: Docker Image CI | |
on: | |
push: | |
branches: [ "cn-v7" ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Github Repo | |
uses: actions/checkout@v4 | |
with: | |
# submodules: recursive | |
submodules: 'true' | |
token: ${{ secrets.CHECKOUT_REPO_TOKEN }} | |
- name: Set Branch Name | |
run: echo "BRANCH_NAME=$(echo $GITHUB_REF | sed 's/refs\/heads\///')" >> $GITHUB_ENV | |
- name: Set Timestamp | |
run: echo "TIMESTAMP=$(date +%s%3N)" >> $GITHUB_ENV | |
- name: Fetch default.conf | |
uses: valitydev/action-download-file@v1 | |
with: | |
url: https://raw.githubusercontent.com/lcxfs1991/docschina-deployment/main/babel/default.conf | |
target-path: . | |
- name: Fetch Dockerfile | |
uses: valitydev/action-download-file@v1 | |
with: | |
url: https://raw.githubusercontent.com/lcxfs1991/docschina-deployment/main/babel/Dockerfile | |
target-path: . | |
- name: Build docs | |
run: yarn && yarn bootstrap | |
- name: Docker build | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
registry: ccr.ccs.tencentyun.com | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v5 | |
with: | |
context: . | |
push: true | |
platforms: linux/amd64 | |
tags: ccr.ccs.tencentyun.com/docschina/babel:${{ env.BRANCH_NAME }}-${{ env.TIMESTAMP }} | |
- name: Deployment | |
uses: TencentCloud/cli-action@v1 | |
with: | |
secret_id: ${{ secrets.SECRET_ID }} | |
secret_key: ${{ secrets.SECRET_KEY }} | |
region: ${{ secrets.LIGHTHOUSE_REGION }} | |
commands: tat InvokeCommand --cli-unfold-argument --region ap-shanghai --CommandId cmd-boc4aaiw --InstanceIds lhins-nkwfootc --Parameters '{"deployment":"babel","image":"ccr.ccs.tencentyun.com/docschina/babel:${{ env.BRANCH_NAME }}-${{ env.TIMESTAMP }}"}' | |
output_format: json |