ci: 镜像发布到 docker hub #3
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: Release Docker Image | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'Dockerfile' | |
- 'docker-compose.yml' | |
- 'src/**' | |
- '.github/workflows/build-latest-image.yaml' | |
- 'main.py' | |
workflow_dispatch: | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Login to Registry | |
run: docker login --username=${{ secrets.DOCKER_HUB_USERNAME }} --password ${{ secrets.DOCKER_HUB_PASSWORD }} | |
- name: Create Buildx | |
run: docker buildx create --name mybuilder --use | |
- name: Build | |
run: docker buildx build --platform linux/arm64,linux/amd64 -t rockchin/campuxutility:latest . --push | |
- name: Push Finish Notification | |
run: | | |
curl --location '${{ secrets.ONEBOT_V11_ENDPOINT }}/send_group_msg' \ | |
--header 'Content-Type: application/json' \ | |
--header 'Authorization: Bearer ${{ secrets.ONEBOT_V11_TOKEN }}' \ | |
--data '{ | |
"group_id": ${{ secrets.ONEBOT_V11_GROUP_ID }}, | |
"message": "CampuxUtility 构建完成。" | |
}' |