diff --git a/pollination_apps/template/dash/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-automated.yaml b/pollination_apps/template/dash/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-automated.yaml index e05937b..b03df66 100644 --- a/pollination_apps/template/dash/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-automated.yaml +++ b/pollination_apps/template/dash/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-automated.yaml @@ -100,9 +100,9 @@ jobs: TAG=$(echo "${TAG:?}" | sed 's/[[:space:]]//g') TAG=${TAG%%-*} - echo pollination-apps deploy app --tag $TAG --owner {{cookiecutter.app_owner}} --name {% raw %}"${{needs.generate-app-name.outputs.app-name}}"{% endraw %} -sdk dash --{{cookiecutter.app_visibility}} --message {% raw %}"${{github.event.commits[0].message}}"{% endraw %} + echo pollination-apps deploy app --tag $TAG --owner {{cookiecutter.app_owner}} --name {% raw %}"${{needs.generate-app-name.outputs.app-name}}"{% endraw %} --sdk dash --{{cookiecutter.app_visibility}} --message {% raw %}"${{github.event.commits[0].message}}"{% endraw %} - pollination-apps deploy app --tag $TAG --owner {{cookiecutter.app_owner}} --name {% raw %}"${{needs.generate-app-name.outputs.app-name}}"{% endraw %} -sdk dash --{{cookiecutter.app_visibility}} --message {% raw %}"${{github.event.commits[0].message}}"{% endraw %} + pollination-apps deploy app --tag $TAG --owner {{cookiecutter.app_owner}} --name {% raw %}"${{needs.generate-app-name.outputs.app-name}}"{% endraw %} --sdk dash --{{cookiecutter.app_visibility}} --message {% raw %}"${{github.event.commits[0].message}}"{% endraw %} env: GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %} diff --git a/pollination_apps/template/dash/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-manual.yaml b/pollination_apps/template/dash/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-manual.yaml index e9c77bb..f322079 100644 --- a/pollination_apps/template/dash/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-manual.yaml +++ b/pollination_apps/template/dash/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-manual.yaml @@ -25,6 +25,6 @@ jobs: pip install pollination-apps - name: deploy app to pollination run: | - pollination-apps deploy app --owner {{cookiecutter.app_owner}} --name "{{cookiecutter.app_name}}" -sdk dash --tag {%raw%}${{ env.RELEASE_VERSION }}{%endraw%} --{{cookiecutter.app_visibility}} + pollination-apps deploy app --owner {{cookiecutter.app_owner}} --name "{{cookiecutter.app_name}}" --sdk dash --tag {%raw%}${{ env.RELEASE_VERSION }}{%endraw%} --{{cookiecutter.app_visibility}} env: POLLINATION_TOKEN: {% raw %}${{ secrets.POLLINATION_TOKEN }}{% endraw %} diff --git a/pollination_apps/template/dash/{{cookiecutter.app_name.lower().replace(' ', '-') }}/README.md b/pollination_apps/template/dash/{{cookiecutter.app_name.lower().replace(' ', '-') }}/README.md index bc0ec51..5a75d79 100644 --- a/pollination_apps/template/dash/{{cookiecutter.app_name.lower().replace(' ', '-') }}/README.md +++ b/pollination_apps/template/dash/{{cookiecutter.app_name.lower().replace(' ', '-') }}/README.md @@ -41,7 +41,7 @@ You need to install Docker on your machine in order to be able to run this comma ## Deploy to Pollination ``` -> pollination-apps deploy app --name "{{ cookiecutter.app_name }}" -sdk dash --{{ cookiecutter.app_visibility }} --api-token "Your api token from Pollination" +> pollination-apps deploy app --name "{{ cookiecutter.app_name }}" --sdk dash --{{ cookiecutter.app_visibility }} --api-token "Your api token from Pollination" ``` {% if cookiecutter.ci == "github-manual" %} diff --git a/pollination_apps/template/react/{{cookiecutter.app_name.lower().replace(' ', '-') }}/README.md b/pollination_apps/template/react/{{cookiecutter.app_name.lower().replace(' ', '-') }}/README.md index 0ba926e..ec27aca 100644 --- a/pollination_apps/template/react/{{cookiecutter.app_name.lower().replace(' ', '-') }}/README.md +++ b/pollination_apps/template/react/{{cookiecutter.app_name.lower().replace(' ', '-') }}/README.md @@ -19,7 +19,7 @@ You need to install Docker on your machine in order to be able to run this comma ## Deploy to Pollination ``` -> pollination-apps deploy app --name "{{ cookiecutter.app_name }}" -sdk react --{{ cookiecutter.app_visibility }} --api-token "Your api token from Pollination" +> pollination-apps deploy app --name "{{ cookiecutter.app_name }}" --sdk react --{{ cookiecutter.app_visibility }} --api-token "Your api token from Pollination" ``` {% if cookiecutter.ci == "github-manual" %} diff --git a/pollination_apps/template/streamlit/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-automated.yaml b/pollination_apps/template/streamlit/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-automated.yaml index 835ec94..2603924 100644 --- a/pollination_apps/template/streamlit/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-automated.yaml +++ b/pollination_apps/template/streamlit/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-automated.yaml @@ -100,9 +100,9 @@ jobs: TAG=$(echo "${TAG:?}" | sed 's/[[:space:]]//g') TAG=${TAG%%-*} - echo pollination-apps deploy app --tag $TAG --owner {{cookiecutter.app_owner}} --name {% raw %}"${{needs.generate-app-name.outputs.app-name}}"{% endraw %} -sdk streamlit --{{cookiecutter.app_visibility}} --message {% raw %}"${{github.event.commits[0].message}}"{% endraw %} + echo pollination-apps deploy app --tag $TAG --owner {{cookiecutter.app_owner}} --name {% raw %}"${{needs.generate-app-name.outputs.app-name}}"{% endraw %} --sdk streamlit --{{cookiecutter.app_visibility}} --message {% raw %}"${{github.event.commits[0].message}}"{% endraw %} - pollination-apps deploy app --tag $TAG --owner {{cookiecutter.app_owner}} --name {% raw %}"${{needs.generate-app-name.outputs.app-name}}"{% endraw %} -sdk streamlit --{{cookiecutter.app_visibility}} --message {% raw %}"${{github.event.commits[0].message}}"{% endraw %} + pollination-apps deploy app --tag $TAG --owner {{cookiecutter.app_owner}} --name {% raw %}"${{needs.generate-app-name.outputs.app-name}}"{% endraw %} --sdk streamlit --{{cookiecutter.app_visibility}} --message {% raw %}"${{github.event.commits[0].message}}"{% endraw %} env: GITHUB_TOKEN: {% raw %}${{ secrets.GITHUB_TOKEN }}{% endraw %} diff --git a/pollination_apps/template/streamlit/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-manual.yaml b/pollination_apps/template/streamlit/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-manual.yaml index 14df4d4..091a6cc 100644 --- a/pollination_apps/template/streamlit/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-manual.yaml +++ b/pollination_apps/template/streamlit/{{cookiecutter.app_name.lower().replace(' ', '-') }}/.github/workflows/ci-manual.yaml @@ -25,6 +25,6 @@ jobs: pip install pollination-apps - name: deploy app to pollination run: | - pollination-apps deploy app --owner {{cookiecutter.app_owner}} --name "{{cookiecutter.app_name}}" -sdk streamlit --tag {%raw%}${{ env.RELEASE_VERSION }}{%endraw%} --{{cookiecutter.app_visibility}} + pollination-apps deploy app --owner {{cookiecutter.app_owner}} --name "{{cookiecutter.app_name}}" --sdk streamlit --tag {%raw%}${{ env.RELEASE_VERSION }}{%endraw%} --{{cookiecutter.app_visibility}} env: POLLINATION_TOKEN: {% raw %}${{ secrets.POLLINATION_TOKEN }}{% endraw %} diff --git a/pollination_apps/template/streamlit/{{cookiecutter.app_name.lower().replace(' ', '-') }}/README.md b/pollination_apps/template/streamlit/{{cookiecutter.app_name.lower().replace(' ', '-') }}/README.md index 12750e3..3814941 100644 --- a/pollination_apps/template/streamlit/{{cookiecutter.app_name.lower().replace(' ', '-') }}/README.md +++ b/pollination_apps/template/streamlit/{{cookiecutter.app_name.lower().replace(' ', '-') }}/README.md @@ -37,7 +37,7 @@ You need to install Docker on your machine in order to be able to run this comma ## Deploy to Pollination ``` -> pollination-apps deploy app --name "{{ cookiecutter.app_name }}" -sdk streamlit --{{ cookiecutter.app_visibility }} --api-token "Your api token from Pollination" +> pollination-apps deploy app --name "{{ cookiecutter.app_name }}" --sdk streamlit --{{ cookiecutter.app_visibility }} --api-token "Your api token from Pollination" ``` {% if cookiecutter.ci == "github-manual" %}