Use relative path to reusable workflow docker-build-push

Previously it was not allowed, now it is. Potentially there will be less bugs on changes.
This commit is contained in:
Lev Vereshchagin 2022-04-04 12:18:12 +03:00
parent 5483abcc58
commit c0d5e5b04a
2 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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"