-
Notifications
You must be signed in to change notification settings - Fork 0
41 lines (36 loc) · 1.15 KB
/
build-latest-image.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
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 构建完成。"
}'