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
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish-bare-resource-fetcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
run: exit 1 # this should never happen

- name: Set nightly version
if: ${{ inputs.latest-build != 'true' }}
if: ${{ !inputs.latest-build }}
working-directory: ${{ env.PACKAGE_DIR }}
run: |
VERSION=${{ env.PACKAGE_VERSION }}
Expand All @@ -94,7 +94,7 @@ jobs:
run: npm pack

- name: Restore version
if: ${{ inputs.latest-build != 'true' }}
if: ${{ !inputs.latest-build }}
working-directory: ${{ env.PACKAGE_DIR }}
run: |
VERSION=${{ env.PACKAGE_VERSION }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/npm-publish-expo-resource-fetcher.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:
run: exit 1 # this should never happen

- name: Set nightly version
if: ${{ inputs.latest-build != 'true' }}
if: ${{ !inputs.latest-build }}
working-directory: ${{ env.PACKAGE_DIR }}
run: |
VERSION=${{ env.PACKAGE_VERSION }}
Expand All @@ -94,7 +94,7 @@ jobs:
run: npm pack

- name: Restore version
if: ${{ inputs.latest-build != 'true' }}
if: ${{ !inputs.latest-build }}
working-directory: ${{ env.PACKAGE_DIR }}
run: |
VERSION=${{ env.PACKAGE_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion packages/bare-resource-fetcher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-executorch-bare-resource-fetcher",
"version": "0.8.0-rc2",
"version": "0.8.0-rc3",
"description": "Bare React Native resource fetcher for react-native-executorch",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion packages/expo-resource-fetcher/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "react-native-executorch-expo-resource-fetcher",
"version": "0.8.0-rc2",
"version": "0.8.0-rc3",
"description": "Expo resource fetcher for react-native-executorch",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
Loading