We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fd6ead commit 063e903Copy full SHA for 063e903
docs/how-to-guides/cdn.md
@@ -28,7 +28,9 @@ In your Github Workflow, add the following step to upload your assets to the CDN
28
uses: nais/deploy/actions/cdn-upload/v2@master
29
with:
30
team: <team slug> # Required, e.g. "team-name"
31
- tenant: <<tenant()>> # Optional, defaults to "nav"
+{%- if tenant() != "nav" %}
32
+ tenant: <<tenant()>> # Required, e.g. "nav"
33
+{%- endif %}
34
source: <The path to your build folder or assets>
35
destination: <A destination you pick, like /my-app/dist>
36
project_id: ${{ vars.NAIS_MANAGEMENT_PROJECT_ID }} # Provided as Organization Secret
0 commit comments