Skip to content

Commit

Permalink
⏪️ Revert to vars from env as per documentation
Browse files Browse the repository at this point in the history
Using vars is what the documentation is telling me, so that is what I have done. But it did not work the last time...
  • Loading branch information
nilsml committed Jun 22, 2023
1 parent 29e14ea commit e319b97
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish_core_react.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,6 @@ jobs:
secrets: inherit
with:
environment: production
cdnProfileName: ${{ env.AZURE_CDN_PROFILE_NAME }}
cdnEndpointName: ${{ env.AZURE_STORYBOOK_ENDPOINT_NAME }}
azureResourceGroup: ${{ env.AZURE_RESOURCE_GROUP }}
cdnProfileName: ${{ vars.AZURE_CDN_PROFILE_NAME }}
cdnEndpointName: ${{ vars.AZURE_STORYBOOK_ENDPOINT_NAME }}
azureResourceGroup: ${{ vars.AZURE_RESOURCE_GROUP }}
6 changes: 3 additions & 3 deletions .github/workflows/publish_storybook.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,6 @@ jobs:
secrets: inherit
with:
environment: production
cdnProfileName: ${{ env.AZURE_CDN_PROFILE_NAME }}
cdnEndpointName: ${{ env.AZURE_STORYBOOK_ENDPOINT_NAME }}
azureResourceGroup: ${{ env.AZURE_RESOURCE_GROUP }}
cdnProfileName: ${{ vars.AZURE_CDN_PROFILE_NAME }}
cdnEndpointName: ${{ vars.AZURE_STORYBOOK_ENDPOINT_NAME }}
azureResourceGroup: ${{ vars.AZURE_RESOURCE_GROUP }}

0 comments on commit e319b97

Please sign in to comment.