docker-push #4
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-push | |
on: | |
workflow_dispatch: | |
# 暂时取消自动编译,优化后重新开启 | |
# push: | |
# tags: | |
# - 'v*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Clone Frontend Project | |
run: git clone https://github.com/li-calendar-notepad/li-calendar-vue.git web | |
- name: Read version from file | |
id: read_version | |
run: echo "APP_VERSION=$(cut -d '|' -f 2 ./assets/version)" >> $GITHUB_ENV // 暂时不支持括号 | |
# run: echo "APP_VERSION=latest" >> $GITHUB_ENV | |
- 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: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Build and push | |
uses: docker/build-push-action@v4 | |
with: | |
context: . # 这里在项目根目录找Dockerfile构建 | |
# platforms: linux/amd64 | |
platforms: linux/amd64,linux/arm,linux/arm64 | |
push: true | |
tags: ${{ vars.DOCKER_IMAGE_NAME }}:${{ env.APP_VERSION }},${{ vars.DOCKER_IMAGE_NAME }} |