mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-21 23:35:09 +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:
|
jobs:
|
||||||
build:
|
build:
|
||||||
uses: frappe/frappe_docker/.github/workflows/docker-build-push.yml@main
|
uses: ./.github/workflows/docker-build-push.yml
|
||||||
with:
|
with:
|
||||||
repo: erpnext
|
repo: erpnext
|
||||||
version: develop
|
version: develop
|
||||||
|
|
|
||||||
4
.github/workflows/build_stable.yml
vendored
4
.github/workflows/build_stable.yml
vendored
|
|
@ -35,7 +35,7 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
v12:
|
v12:
|
||||||
uses: frappe/frappe_docker/.github/workflows/docker-build-push.yml@main
|
uses: ./.github/workflows/docker-build-push.yml
|
||||||
with:
|
with:
|
||||||
repo: erpnext
|
repo: erpnext
|
||||||
version: "12"
|
version: "12"
|
||||||
|
|
@ -46,7 +46,7 @@ jobs:
|
||||||
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||||
|
|
||||||
v13:
|
v13:
|
||||||
uses: frappe/frappe_docker/.github/workflows/docker-build-push.yml@main
|
uses: ./.github/workflows/docker-build-push.yml
|
||||||
with:
|
with:
|
||||||
repo: erpnext
|
repo: erpnext
|
||||||
version: "13"
|
version: "13"
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue