mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-17 13:55:08 +00:00
Merge pull request #2 from Rocket-Quack/feat/rework-workflows-image-building
chore(ci): allow image publishing on test fork
This commit is contained in:
commit
0d11308944
2 changed files with 3 additions and 3 deletions
2
.github/workflows/core-build-develop.yml
vendored
2
.github/workflows/core-build-develop.yml
vendored
|
|
@ -35,7 +35,7 @@ jobs:
|
||||||
node_version: 24.12.0
|
node_version: 24.12.0
|
||||||
|
|
||||||
publish:
|
publish:
|
||||||
if: ${{ github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request' }}
|
if: ${{ contains(fromJSON('["frappe/frappe_docker","Rocket-Quack/frappe_docker"]'), github.repository) && github.event_name != 'pull_request' }}
|
||||||
needs: test
|
needs: test
|
||||||
uses: ./.github/workflows/core-publish-images.yml
|
uses: ./.github/workflows/core-publish-images.yml
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
4
.github/workflows/core-build-stable.yml
vendored
4
.github/workflows/core-build-stable.yml
vendored
|
|
@ -48,7 +48,7 @@ jobs:
|
||||||
node_version: 20.19.2
|
node_version: 20.19.2
|
||||||
|
|
||||||
v15_publish:
|
v15_publish:
|
||||||
if: ${{ github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request' }}
|
if: ${{ contains(fromJSON('["frappe/frappe_docker","Rocket-Quack/frappe_docker"]'), github.repository) && github.event_name != 'pull_request' }}
|
||||||
needs: v15_test
|
needs: v15_test
|
||||||
uses: ./.github/workflows/core-publish-images.yml
|
uses: ./.github/workflows/core-publish-images.yml
|
||||||
with:
|
with:
|
||||||
|
|
@ -69,7 +69,7 @@ jobs:
|
||||||
python_version: 3.14.2
|
python_version: 3.14.2
|
||||||
node_version: 24.12.0
|
node_version: 24.12.0
|
||||||
v16_publish:
|
v16_publish:
|
||||||
if: ${{ github.repository == 'frappe/frappe_docker' && github.event_name != 'pull_request' }}
|
if: ${{ contains(fromJSON('["frappe/frappe_docker","Rocket-Quack/frappe_docker"]'), github.repository) && github.event_name != 'pull_request' }}
|
||||||
needs: v16_test
|
needs: v16_test
|
||||||
uses: ./.github/workflows/core-publish-images.yml
|
uses: ./.github/workflows/core-publish-images.yml
|
||||||
with:
|
with:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue