use relative refs

This commit is contained in:
Hayden 2022-09-10 11:10:28 -08:00
parent e989651336
commit 7231c842c0
3 changed files with 8 additions and 8 deletions

View File

@ -8,15 +8,15 @@ on:
jobs: jobs:
backend-tests: backend-tests:
name: "Backend Server Tests" name: "Backend Server Tests"
uses: hay-kot/mealie/.github/workflows/partial-backend.yml@mealie-next uses: ./.github/workflows/partial-backend.yml
frontend-tests: frontend-tests:
name: "Frontend and End-to-End Tests" name: "Frontend and End-to-End Tests"
uses: hay-kot/mealie/.github/workflows/partial-frontend.yml@mealie-next uses: ./.github/workflows/partial-frontend.yml
build-release: build-release:
name: Build Tagged Release name: Build Tagged Release
uses: hay-kot/mealie/.github/workflows/partial-builder.yml@mealie-next uses: ./.github/workflows/partial-builder.yml
needs: needs:
- frontend-tests - frontend-tests
- backend-tests - backend-tests

View File

@ -8,8 +8,8 @@ on:
jobs: jobs:
backend-tests: backend-tests:
name: "Backend Server Tests" name: "Backend Server Tests"
uses: hay-kot/mealie/.github/workflows/partial-backend.yml@mealie-next uses: ./.github/workflows/partial-backend.yml
frontend-tests: frontend-tests:
name: "Frontend and End-to-End Tests" name: "Frontend and End-to-End Tests"
uses: hay-kot/mealie/.github/workflows/partial-frontend.yml@mealie-next uses: ./.github/workflows/partial-frontend.yml

View File

@ -7,11 +7,11 @@ on:
jobs: jobs:
backend-tests: backend-tests:
name: "Backend Server Tests" name: "Backend Server Tests"
uses: hay-kot/mealie/.github/workflows/partial-backend.yml@mealie-next uses: ./.github/workflows/partial-backend.yml
frontend-tests: frontend-tests:
name: "Frontend and End-to-End Tests" name: "Frontend and End-to-End Tests"
uses: hay-kot/mealie/.github/workflows/partial-frontend.yml@mealie-next uses: ./.github/workflows/partial-frontend.yml
get-release: get-release:
name: "Get Releave Tag" name: "Get Releave Tag"
@ -28,7 +28,7 @@ jobs:
releases-only: true # We know that all relevant tags have a GitHub release for them. releases-only: true # We know that all relevant tags have a GitHub release for them.
build-release: build-release:
name: Build Tagged Release name: Build Tagged Release
uses: hay-kot/mealie/.github/workflows/partial-builder.yml@mealie-next uses: ./.github/workflows/partial-builder.yml@mealie-next
needs: needs:
- get-release - get-release
with: with: