chore: refactor github directory files

Signed-off-by: Devin Buhl <devin@buhl.casa>
This commit is contained in:
Devin Buhl 2023-06-09 09:28:48 -04:00
parent 8b81055fad
commit 57de948ac0
No known key found for this signature in database
5 changed files with 7 additions and 10 deletions

View File

@ -12,9 +12,8 @@ on:
jobs:
go-tests:
uses: ./.github/workflows/tests.yaml
uses: ./.github/actions/tests.yaml
build:
needs: go-tests
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
uses: ./.github/workflows/docker-image.yaml
uses: ./.github/actions/docker-image.yaml

View File

@ -1,19 +1,17 @@
---
name: release
on:
push:
tags:
- v*.*.*
- v*
jobs:
go-tests:
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
uses: ./.github/workflows/tests.yaml
uses: ./.github/actions/tests.yaml
container-release:
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
uses: ./.github/workflows/docker-image.yaml
uses: ./.github/actions/docker-image.yaml
go-release:
if: "!contains(github.event.head_commit.message, '[ci-skip]')"
uses: ./.github/workflows/go-release.yaml
uses: ./.github/actions/go-release.yaml