mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
Use relative path to reusable workflow docker-build-push (#755)
Previously it was not allowed, now it is. Potentially there will be less bugs on changes.
This commit is contained in:
parent
fda82636b1
commit
f39fe05fca
2 changed files with 3 additions and 3 deletions
2
.github/workflows/build_develop.yml
vendored
2
.github/workflows/build_develop.yml
vendored
|
|
@ -23,7 +23,7 @@ on:
|
|||
|
||||
jobs:
|
||||
build:
|
||||
uses: frappe/frappe_docker/.github/workflows/docker-build-push.yml@main
|
||||
uses: ./.github/workflows/docker-build-push.yml
|
||||
with:
|
||||
repo: erpnext
|
||||
version: develop
|
||||
|
|
|
|||
4
.github/workflows/build_stable.yml
vendored
4
.github/workflows/build_stable.yml
vendored
|
|
@ -35,7 +35,7 @@ on:
|
|||
|
||||
jobs:
|
||||
v12:
|
||||
uses: frappe/frappe_docker/.github/workflows/docker-build-push.yml@main
|
||||
uses: ./.github/workflows/docker-build-push.yml
|
||||
with:
|
||||
repo: erpnext
|
||||
version: "12"
|
||||
|
|
@ -46,7 +46,7 @@ jobs:
|
|||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
|
||||
v13:
|
||||
uses: frappe/frappe_docker/.github/workflows/docker-build-push.yml@main
|
||||
uses: ./.github/workflows/docker-build-push.yml
|
||||
with:
|
||||
repo: erpnext
|
||||
version: "13"
|
||||
|
|
|
|||
Loading…
Reference in a new issue