fix(style): 修复一些对使用造成影响的样式问题。 #131
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: Dev Docker Multi-arch Image CI & CD | |
on: | |
push: | |
branches: | |
- v2 | |
jobs: | |
build: | |
name: Running Compile Next Multi-arch Docker Image | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout PicImpact | |
uses: actions/checkout@v4 | |
- name: Get Version | |
id: get_version | |
run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/} | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Docker Buildx | |
id: set_up_buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Build and push dev | |
id: docker_build | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./ | |
file: ./Dockerfile | |
platforms: linux/amd64,linux/arm64 | |
push: true | |
tags: ${{ secrets.DOCKERHUB_USERNAME }}/picimpact:dev |