Skip to content

Commit

Permalink
ci: use actions/upload-artifact@v4
Browse files Browse the repository at this point in the history
  • Loading branch information
thecodrr committed May 10, 2024
1 parent 9195244 commit 8c37c64
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/android.publish.internal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
apps/mobile/native/android/app/build/outputs/apk/release/notesnook-x86_64.apk
- name: Upload sourcemaps
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: sourcemaps
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/android.publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ jobs:
apps/mobile/native/android/app/build/outputs/apk/release/notesnook-x86_64.apk
- name: Upload sourcemaps
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: sourcemaps
path: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ios.publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ jobs:
api-private-key: ${{ secrets.API_KEY }}

- name: Upload Notesnook.ipa to Github
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Notesnook.zip
path: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/web.tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
run: npm run build:test:web

- name: Archive build artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: build
path: apps/web/build/**/*
Expand All @@ -56,7 +56,7 @@ jobs:
uses: actions/checkout@v3

- name: Download build
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: build
path: ./apps/web/build
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
working-directory: apps/web

- name: Upload test results
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
if: failure()
with:
name: test-results-${{ matrix.shard }}
Expand Down

0 comments on commit 8c37c64

Please sign in to comment.