From c0632ed28dfbd566262adea6f9cf62d34eedc8fd Mon Sep 17 00:00:00 2001 From: David Glick Date: Thu, 14 Nov 2024 16:16:30 -0800 Subject: [PATCH 1/2] Update README-GHA.md --- project/{{ cookiecutter.__folder_name }}/devops/README-GHA.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/{{ cookiecutter.__folder_name }}/devops/README-GHA.md b/project/{{ cookiecutter.__folder_name }}/devops/README-GHA.md index 64e3146..06086ae 100644 --- a/project/{{ cookiecutter.__folder_name }}/devops/README-GHA.md +++ b/project/{{ cookiecutter.__folder_name }}/devops/README-GHA.md @@ -28,7 +28,7 @@ After setting up the environment, it's time to add secrets. These are sensitive | DEPLOY_PORT | 22 | The SSHD Port. | | DEPLOY_USER | plone | The user to connect to the deploy host, with permissions to run Docker commands. | | DEPLOY_SSH | Contents of `devops/etc/keys/plone_prod_deploy_ed25519` | The private SSH key used for connection. The corresponding public key should be in the `~/.ssh/authorized_keys` file of the deployment user. | -| ENV_FILE | Contents of `devops/.env_file_gha` | The file containing environment variables used by the stack file. | +| ENV_FILE | Contents of `devops/.env_gha` | The file containing environment variables used by the stack file. | ### Step 3: Add Repository Variables 📚 From 3b64e422567c7724d9069cb380a9aaf3da007d6a Mon Sep 17 00:00:00 2001 From: Fosten Date: Thu, 21 Nov 2024 12:59:56 -0500 Subject: [PATCH 2/2] Generate frontend_addon_name from title --- frontend_addon/cookiecutter.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend_addon/cookiecutter.json b/frontend_addon/cookiecutter.json index d8b30c4..2975ebd 100644 --- a/frontend_addon/cookiecutter.json +++ b/frontend_addon/cookiecutter.json @@ -1,6 +1,6 @@ { "title": "Volto Add-on", - "frontend_addon_name": "volto-addon", + "frontend_addon_name": "{{ cookiecutter.title | slugify }}", "description": "A new add-on for Volto", "author": "Plone Community", "email": "collective@plone.org",