diff --git a/.github/workflows/npm-publish-bare-resource-fetcher.yml b/.github/workflows/npm-publish-bare-resource-fetcher.yml index 1cd6186026..78aadb2439 100644 --- a/.github/workflows/npm-publish-bare-resource-fetcher.yml +++ b/.github/workflows/npm-publish-bare-resource-fetcher.yml @@ -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 }} @@ -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 }} diff --git a/.github/workflows/npm-publish-expo-resource-fetcher.yml b/.github/workflows/npm-publish-expo-resource-fetcher.yml index c5fa005497..04539bc763 100644 --- a/.github/workflows/npm-publish-expo-resource-fetcher.yml +++ b/.github/workflows/npm-publish-expo-resource-fetcher.yml @@ -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 }} @@ -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 }} diff --git a/packages/bare-resource-fetcher/package.json b/packages/bare-resource-fetcher/package.json index ce89537619..77e7144b1a 100644 --- a/packages/bare-resource-fetcher/package.json +++ b/packages/bare-resource-fetcher/package.json @@ -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", diff --git a/packages/expo-resource-fetcher/package.json b/packages/expo-resource-fetcher/package.json index a05935aa86..36bab59558 100644 --- a/packages/expo-resource-fetcher/package.json +++ b/packages/expo-resource-fetcher/package.json @@ -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",