diff --git a/.github/workflows/push-staging.yml b/.github/workflows/push-staging.yml index 47567d89..9f38bfef 100644 --- a/.github/workflows/push-staging.yml +++ b/.github/workflows/push-staging.yml @@ -1,15 +1,16 @@ -name: 'deploy' +name: 'deploy-staging' on: # Triggers the workflow on branch and tag creation events create: jobs: - deploy: + deploy_staging: # Only deploy if it has the tag 'release' if: ${{ startsWith(github.ref, 'refs/tags/release') }} runs-on: ubuntu-latest + environment: Staging steps: - name: Cloning repo uses: actions/checkout@v2