Skip to content
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.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/buildandtest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -166,12 +166,12 @@ jobs:
- name: Install Dependencies
run: yarn install
- name: Download dist
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist
path: packages/core/dist
- name: Download ts3.8
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ts3.8
path: packages/core/ts3.8
Expand All @@ -197,12 +197,12 @@ jobs:
- name: Install Dependencies
run: yarn install
- name: Download dist
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: dist
path: packages/core/dist
- name: Download Expo Plugin
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: expo-plugin
path: packages/core/plugin/build
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e-v2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -350,7 +350,7 @@ jobs:

- name: Download App Package
if: matrix.build-type == 'production'
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: ${{ matrix.rn-version }}-${{ matrix.rn-architecture }}-${{ matrix.engine }}-${{ matrix.platform }}-${{ matrix.build-type }}-${{ matrix.ios-use-frameworks }}-app-package
path: dev-packages/e2e-tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/sample-application.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,14 +243,14 @@ jobs:

- name: Download iOS App Archive
if: ${{ matrix.platform == 'ios' }}
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: sample-rn-${{ matrix.rn-architecture }}-${{ matrix.build-type }}-${{ matrix.ios-use-frameworks}}-${{ matrix.platform }}
path: ${{ env.REACT_NATIVE_SAMPLE_PATH }}

- name: Download Android APK
if: ${{ matrix.platform == 'android' }}
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: sample-rn-${{ matrix.rn-architecture }}-${{ matrix.build-type }}-${{ matrix.platform }}
path: ${{ env.REACT_NATIVE_SAMPLE_PATH }}
Expand Down
Loading