mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-23 00:05:09 +00:00
Update build_custom_image.yml
fixed syntax issues
This commit is contained in:
parent
e38148ae8d
commit
f44d22e2db
1 changed files with 5 additions and 3 deletions
8
.github/workflows/build_custom_image.yml
vendored
8
.github/workflows/build_custom_image.yml
vendored
|
|
@ -28,7 +28,7 @@ jobs:
|
||||||
{
|
{
|
||||||
"url": "https://github.com/frappe/helpdesk",
|
"url": "https://github.com/frappe/helpdesk",
|
||||||
"branch": "develop"
|
"branch": "develop"
|
||||||
}
|
},
|
||||||
{
|
{
|
||||||
"url": "https://github.com/resilient-tech/india-compliance",
|
"url": "https://github.com/resilient-tech/india-compliance",
|
||||||
"branch": "version-15"
|
"branch": "version-15"
|
||||||
|
|
@ -37,7 +37,9 @@ jobs:
|
||||||
EOF
|
EOF
|
||||||
|
|
||||||
- name: Check apps.json syntax
|
- name: Check apps.json syntax
|
||||||
run: jq empty apps.json
|
run: |
|
||||||
|
cat apps.json
|
||||||
|
jq empty apps.json
|
||||||
|
|
||||||
- name: Generate APPS_JSON_BASE64
|
- name: Generate APPS_JSON_BASE64
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -60,7 +62,7 @@ jobs:
|
||||||
|
|
||||||
- name: Podman login to ghcr.io
|
- name: Podman login to ghcr.io
|
||||||
run: |
|
run: |
|
||||||
podman login ghcr.io -u ${{ github.actor }} -p ${{ secrets.USER_TOKEN }}
|
podman login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Push image to ghcr.io
|
- name: Push image to ghcr.io
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue