docker-image-ci.yml 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. name: Docker Image CI
  2. on:
  3. push:
  4. tags:
  5. - v*
  6. # 这个选项可以使你手动在 Action tab 页面触发工作流
  7. workflow_dispatch:
  8. jobs:
  9. build:
  10. runs-on: ubuntu-latest
  11. steps:
  12. - name: get version
  13. id: vars
  14. run: echo ::set-output name=version::${GITHUB_REF/refs\/tags\/v/}
  15. - uses: actions/checkout@v4
  16. - name: set up QEMU
  17. uses: docker/setup-qemu-action@v3
  18. - name: set up docker buildx
  19. uses: docker/setup-buildx-action@v3
  20. - name: login ghrc hub
  21. uses: docker/login-action@v3
  22. with:
  23. registry: ghcr.io
  24. username: ${{ github.repository_owner }}
  25. password: ${{ secrets.GHCR_TOKEN }}
  26. - name: build and push
  27. uses: docker/build-push-action@v5
  28. with:
  29. push: true
  30. platforms: linux/amd64,linux/arm64
  31. tags: |
  32. ghcr.io/${{ github.repository_owner }}/douyin-vue:${{ steps.vars.outputs.version }}
  33. ghcr.io/${{ github.repository_owner }}/douyin-vue:latest