2020-11-29 09:17:40 -05:00
|
|
|
name: Build Dashboard Image
|
2020-11-06 07:51:23 -05:00
|
|
|
|
2020-11-29 09:17:40 -05:00
|
|
|
on:
|
|
|
|
push:
|
|
|
|
paths-ignore:
|
|
|
|
- "script/**"
|
|
|
|
- ".gitignore"
|
|
|
|
- "README.md"
|
|
|
|
- "cmd/agent/**"
|
|
|
|
- ".github/agent.yaml"
|
2020-11-06 07:51:23 -05:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
deploy:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@master
|
2020-11-11 09:21:16 -05:00
|
|
|
|
|
|
|
- name: Log into registry
|
2020-11-11 22:12:30 -05:00
|
|
|
run: echo "${{ secrets.CR_PAT }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
|
2020-11-11 09:21:16 -05:00
|
|
|
|
2020-11-29 09:17:40 -05:00
|
|
|
- name: Build and push dasbboard image
|
2020-11-06 07:51:23 -05:00
|
|
|
run: |
|
2020-11-11 22:12:30 -05:00
|
|
|
docker build -t ghcr.io/${{ github.repository_owner }}/nezha-dashboard -f Dockerfile.dashboard .
|
|
|
|
docker push ghcr.io/${{ github.repository_owner }}/nezha-dashboard
|