Skip to content

Commit

Permalink
Try to fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sneridagh committed May 20, 2024
1 parent 0296737 commit fabc672
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions project/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"1",
"0"
],
"__npm_package_name": "{{ cookiecutter.frontend_addon_name }}",
"__folder_name": "{{ cookiecutter.project_slug }}",
"__python_package_name_upper": "{{ cookiecutter.python_package_name | pascal_case }}",
"__node_version": "{{ cookiecutter.volto_version | node_version_for_volto }}",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
outputs:
BASE_TAG: {{"${{ steps.vars.outputs.BASE_TAG }}"}}
VOLTO_VERSION: {{ "${{ steps.vars.outputs.VOLTO_VERSION }}" }}
VOLTO_VERSION: {{"${{ steps.vars.outputs.VOLTO_VERSION }}"}}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down
4 changes: 2 additions & 2 deletions sub/project_settings/cookiecutter.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"language_code": "en",
"volto_version": "{{ 'Yes' | latest_volto }}",
"github_organization": "collective",
"__npm_package_name": "{{ cookiecutter.frontend_addon_name }}",
"__folder_name": "{{ cookiecutter.project_slug }}",
"__package_name": "{{ cookiecutter.python_package_name | package_name }}",
"__package_namespace": "{{ cookiecutter.python_package_name | package_namespace }}",
Expand All @@ -17,8 +18,7 @@
"__profile_language": "{{ cookiecutter.language_code|gs_language_code }}",
"__locales_language": "{{ cookiecutter.language_code|locales_language_code }}",
"__node_version": "{{ cookiecutter.volto_version | node_version_for_volto }}",
"_copy_without_render": [
],
"_copy_without_render": [],
"_extensions": [
"cookieplone.filters.use_prerelease_versions",
"cookieplone.filters.node_version_for_volto",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ PLONE_VERSION=6
DOCKER_IMAGE=plone/server-dev:${PLONE_VERSION}
DOCKER_IMAGE_ACCEPTANCE=plone/server-acceptance:${PLONE_VERSION}

ADDON_NAME='{{ cookiecutter.npm_package_name }}'
ADDON_NAME='{{ cookiecutter.__npm_package_name }}'
IMAGE_NAME={{cookiecutter.__container_image_prefix}}-frontend
IMAGE_TAG=latest
VOLTO_VERSION = $(shell cat ./mrs.developer.json | python -c "import sys, json; print(json.load(sys.stdin)['core']['tag'])")
Expand Down

0 comments on commit fabc672

Please sign in to comment.