watchdog-go: ci

Reviewed-on: #1
Co-authored-by: usbharu <64310155+usbharu@users.noreply.github.com>
Co-committed-by: usbharu <64310155+usbharu@users.noreply.github.com>
This commit is contained in:
usbharu 2024-03-11 10:09:22 +00:00 committed by usbharu
parent c8f23ae941
commit 6314bb6d99
2 changed files with 44 additions and 24 deletions

View File

@ -1,4 +1,4 @@
on:
on:
pull_request:
types:
- opened
@ -6,21 +6,41 @@
- labeled
workflow_dispatch:
jobs:
permissions:
pull-requests: read
jobs:
test:
runs-on: ubuntu-latest
steps:
- run: echo ${{github.event.action}}
- run: echo ${{ contains(github.event.pull_request.labels.*.name, 'watchdog-go') }}
build-docker-image:
runs-on: ubuntu-latest
container:
image: catthehacker/ubuntu:act-latest
defaults:
run:
working-directory: ./watchdog-go
if: |
((github.event.action == 'labeled') &&
(github.event.label.name == 'watchdog-go')) ||
((github.event.action == 'synchronize') &&
contains(github.event.pull_request.labels.*.name, 'watchdog-go') ||
((github.event.action == 'synchronized') &&
contains(github.event.pull_request.labels.*.name, 'watchdog-go')) ||
(github.event.action == 'workflow_dispatch')
steps:
- uses: actions/checkout@v3
- run: docker login -u usbharu -p ${{ secrets.DEPLOY_TOKEN }} git.usbharu.dev
- run: docker build ./ watchdog-go -t latest -t ${{ github.sha }}
- run: docker push git.usbharu.dev/usbharu/watchdog-go:${{ github.sha }}
- uses: https://github.com/docker/setup-buildx-action@v3
- uses: https://github.com/docker/login-action@v3
with:
registry: git.usbharu.dev
username: usbharu
password: ${{ secrets.DEPLOY_TOKEN }}
- uses: https://github.com/docker/build-push-action@v5
with:
context: ./watchdog-go
tags: git.usbharu.dev/usbharu/watchdog-go:latest,git.usbharu.dev/usbharu/watchdog-go:${{ github.sha }}
push: true

0
ignore Normal file
View File