Skip to content

Commit

Permalink
script improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
actions-user committed May 31, 2024
1 parent 0486a40 commit 73a7fd1
Showing 1 changed file with 20 additions and 1 deletion.
21 changes: 20 additions & 1 deletion .github/workflows/prod-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ jobs:
environment: qa.orcid.org
runs-on: ubuntu-latest
steps:

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Checkout repository
uses: actions/checkout@v3

Expand Down Expand Up @@ -46,10 +52,17 @@ jobs:
python wordpress-prod-release-validation.py QA
upload_prod_wordpress_to_fallback_s3:

runs-on: ubuntu-latest
environment: orcid.org
needs: upload_prod_wordpress_to_qa_s3
steps:

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Checkout repository
uses: actions/checkout@v3

Expand Down Expand Up @@ -78,8 +91,14 @@ jobs:
upload_prod_wordpress_to_prod_s3:
runs-on: ubuntu-latest
environment: orcid.org
needs: upload_prod_wordpress_to_qa_s3
needs: upload_prod_wordpress_to_fallback_s3
steps:

- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: '3.x'

- name: Checkout repository
uses: actions/checkout@v3

Expand Down

0 comments on commit 73a7fd1

Please sign in to comment.