Skip to content

Commit

Permalink
fix url for preview storybook deplyopment
Browse files Browse the repository at this point in the history
  • Loading branch information
lukasoppermann committed Apr 23, 2024
1 parent 8b482dd commit a1a37e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/deploy_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,21 @@ jobs:
id: deployment
with:
token: '${{ secrets.GITHUB_TOKEN }}'
environment-url: ${{needs.deploy.outputs.deployment_url}}/storybook
environment-url: ${{needs.deploy.outputs.deployment_url}}storybook
environment: storybook-preview
- name: Update deployment status (success)
if: success()
uses: chrnorm/deployment-status@v2
with:
token: '${{ secrets.GITHUB_TOKEN }}'
environment-url: ${{needs.deploy.outputs.deployment_url}}/storybook
environment-url: ${{needs.deploy.outputs.deployment_url}}storybook
state: 'success'
deployment-id: ${{ steps.deployment.outputs.deployment_id }}
- name: Update deployment status (failure)
if: failure()
uses: chrnorm/deployment-status@v2
with:
token: '${{ secrets.GITHUB_TOKEN }}'
environment-url: ${{needs.deploy.outputs.deployment_url}}/storybook
environment-url: ${{needs.deploy.outputs.deployment_url}}storybook
state: 'failure'
deployment-id: ${{ steps.deployment.outputs.deployment_id }}

0 comments on commit a1a37e8

Please sign in to comment.