Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update workflows to target staging and production #118

Merged
merged 1 commit into from
May 20, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/manual-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
test_build_deploy:
runs-on: ubuntu-latest
environment:
name: develop
name: production
env:
environment: develop
environment: production
steps:
- uses: actions/checkout@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ jobs:
runs-on: ubuntu-latest
needs: [draft_release,test]
environment:
name: develop
name: staging
env:
environment: develop
environment: staging
steps:
- uses: actions/checkout@v2
- name: Cache node modules
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/on-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,9 +8,9 @@ jobs:
deploy_to_production:
runs-on: ubuntu-latest
environment:
name: develop
name: production
env:
environment: develop
environment: production
steps:
- uses: actions/checkout@v2
- name: Cache node modules
Expand Down