Skip to content

Commit

Permalink
fix: rename deploy app workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
emnnipal committed Sep 25, 2022
1 parent d1507e1 commit 514b00e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
File renamed without changes.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
name: Deploy to Dev
if: github.event.ref == 'refs/heads/develop'
needs: lint-and-test
uses: ./.github/workflows/deploy-app-workflow.yml
uses: ./.github/workflows/deploy-action.yml
with:
environment: dev
branch: develop
Expand Down Expand Up @@ -91,7 +91,7 @@ jobs:
name: Deploy to Staging
if: needs.release.outputs.skipped == 'false'
needs: release
uses: ./.github/workflows/deploy-app-workflow.yml
uses: ./.github/workflows/deploy-action.yml
with:
environment: staging
branch: 'refs/tags/${{needs.release.outputs.tag}}'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manual-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ on:
jobs:
manual-deploy:
name: '${{ github.event.inputs.environment }}:${{ github.ref_name }}'
uses: ./.github/workflows/deploy-app-workflow.yml
uses: ./.github/workflows/deploy-action.yml
with:
environment: ${{ github.event.inputs.environment }}
branch: ${{ github.ref }}
Expand All @@ -28,7 +28,7 @@ jobs:
# manual-deploy-staging:
# name: 'Deploy to Staging'
# if: ${{ github.event.inputs.environment == 'staging' }}
# uses: ./.github/workflows/deploy-app-workflow.yml
# uses: ./.github/workflows/deploy-action.yml
# with:
# environment: STAGING
# branch: ${{ github.ref }}
Expand Down

0 comments on commit 514b00e

Please sign in to comment.