mirror of
https://github.com/Buriburizaem0n/nezha_domains.git
synced 2026-02-04 12:40:07 +00:00
✨ 一键脚本
This commit is contained in:
24
.github/workflows/dashboard.yml
vendored
Normal file
24
.github/workflows/dashboard.yml
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
name: Build Dashboard Image
|
||||
|
||||
on:
|
||||
push:
|
||||
paths-ignore:
|
||||
- "script/**"
|
||||
- ".gitignore"
|
||||
- "README.md"
|
||||
- "cmd/agent/**"
|
||||
- ".github/agent.yaml"
|
||||
|
||||
jobs:
|
||||
deploy:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
|
||||
- name: Log into registry
|
||||
run: echo "${{ secrets.CR_PAT }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
|
||||
|
||||
- name: Build and push dasbboard image
|
||||
run: |
|
||||
docker build -t ghcr.io/${{ github.repository_owner }}/nezha-dashboard -f Dockerfile.dashboard .
|
||||
docker push ghcr.io/${{ github.repository_owner }}/nezha-dashboard
|
||||
Reference in New Issue
Block a user