一键脚本

This commit is contained in:
naiba
2020-11-29 22:17:40 +08:00
parent e31943144a
commit 7fdf323c05
13 changed files with 464 additions and 184 deletions

27
.github/workflows/agent.yml vendored Normal file
View File

@@ -0,0 +1,27 @@
name: Agent release
on:
push:
paths-ignore:
- "script/**"
- ".gitignore"
- "README.md"
- "cmd/dashboard/**"
- ".github/dashboard.yaml"
tags:
- "v*"
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
if: startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --rm-dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View File

@@ -1,6 +1,13 @@
name: Build Docker Image
name: Build Dashboard Image
on: [push]
on:
push:
paths-ignore:
- "script/**"
- ".gitignore"
- "README.md"
- "cmd/agent/**"
- ".github/agent.yaml"
jobs:
deploy:
@@ -11,9 +18,7 @@ jobs:
- name: Log into registry
run: echo "${{ secrets.CR_PAT }}" | docker login ghcr.io -u ${{ github.repository_owner }} --password-stdin
- name: docker
- name: Build and push dasbboard image
run: |
docker build -t ghcr.io/${{ github.repository_owner }}/nezha-agent -f Dockerfile.agent .
docker build -t ghcr.io/${{ github.repository_owner }}/nezha-dashboard -f Dockerfile.dashboard .
docker push ghcr.io/${{ github.repository_owner }}/nezha-agent
docker push ghcr.io/${{ github.repository_owner }}/nezha-dashboard