Build Docker Image Release #1
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 Release | |
on: | |
workflow_run: | |
workflows: [Build Docker Image PR] | |
types: | |
- completed | |
jobs: | |
docker: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
- run: | | |
npm install | |
npm run build | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- | |
name: Login to Docker Hub | |
uses: docker/login-action@v2 | |
with: | |
username: happyclo | |
password: wumaoyuan | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: happyclo/bing:latest | |
- name: Push to hub | |
env: | |
HF_TOKEN: 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 | |
HF_USERNAME: Happys | |
SPACE_NAME: bing | |
run: | | |
git clone https://$HF_USERNAME:[email protected]/spaces/$HF_USERNAME/$SPACE_NAME huggingface | |
cd huggingface | |
git config user.name Happys | |
git config user.email [email protected] | |
echo "Last deploy time: $(date)" > DEPLOY_INFO.txt | |
git add DEPLOY_INFO.txt | |
git commit -am "auto deploy $(date)" | |
git push https://$HF_USERNAME:[email protected]/spaces/$HF_USERNAME/$SPACE_NAME main -f |