Skip to content

Commit

Permalink
Update workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
KevinBatdorf committed Apr 7, 2023
1 parent a4c1f05 commit edd7805
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-production-zip.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: npm install and build
run: |
npm ci
Expand All @@ -15,7 +15,7 @@ jobs:
CI: true

- name: Package
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: unlimited-photos
retention-days: 5
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release-to-wp-org.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
uses: actions/checkout@v3

- name: npm install and build
run: |
Expand All @@ -25,12 +25,12 @@ jobs:
uses: cypress-io/github-action@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: always()
with:
name: cypress-screenshots
path: cypress/screenshots
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
if: failure()
with:
name: cypress-videos
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-wordpress-readme.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
name: Push to WordPress.org
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: npm install and build
run: |
npm ci
Expand Down

0 comments on commit edd7805

Please sign in to comment.