Skip to content
This repository has been archived by the owner on Oct 3, 2023. It is now read-only.

Commit

Permalink
GitHub Actions の不要な条件文を削除する
Browse files Browse the repository at this point in the history
  • Loading branch information
calmery committed Nov 2, 2020
1 parent 2faedf6 commit 23891a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/deploy-to-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
- id: environment-url
run: echo "::set-output name=body::$(cat environment-url)"
- if: steps.vercel.outcome == 'success'
uses: chrnorm/deployment-status@releases/v1
- uses: chrnorm/deployment-status@releases/v1
with:
deployment_id: ${{ steps.deployment-action.outputs.deployment_id }}
environment_url: ${{ steps.environment-url.outputs.body }}
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/deploy-to-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
- id: environment-url
run: echo "::set-output name=body::$(cat environment-url)"
- if: steps.vercel.outcome == 'success'
uses: chrnorm/deployment-status@releases/v1
- uses: chrnorm/deployment-status@releases/v1
with:
deployment_id: ${{ steps.deployment-action.outputs.deployment_id }}
environment_url: ${{ steps.environment-url.outputs.body }}
Expand Down

0 comments on commit 23891a9

Please sign in to comment.