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:
Lev 2022-04-04 12:36:30 +03:00 committed by GitHub
parent fda82636b1
commit f39fe05fca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"