Skip to content

Commit 32fc68b

Browse files
authored
chore: Fix naming of packages via workflow (#973)
## Description <!-- Provide a concise and descriptive summary of the changes implemented in this PR. --> ### Introduces a breaking change? - [ ] Yes - [x] No ### Type of change - [ ] Bug fix (change which fixes an issue) - [ ] New feature (change which adds functionality) - [ ] Documentation update (improves or adds clarity to existing documentation) - [x] Other (chores, tests, code style improvements etc.) ### Tested on - [ ] iOS - [ ] Android ### Testing instructions <!-- Provide step-by-step instructions on how to test your changes. Include setup details if necessary. --> ### Screenshots <!-- Add screenshots here, if applicable --> ### Related issues <!-- Link related issues here using #issue-number --> ### Checklist - [ ] I have performed a self-review of my code - [ ] I have commented my code, particularly in hard-to-understand areas - [ ] I have updated the documentation accordingly - [ ] My changes generate no new warnings ### Additional notes <!-- Include any additional information, assumptions, or context that reviewers might need to understand this PR. -->
1 parent e29d9b1 commit 32fc68b

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.github/workflows/npm-publish-bare-resource-fetcher.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
run: exit 1 # this should never happen
7272

7373
- name: Set nightly version
74-
if: ${{ inputs.latest-build != 'true' }}
74+
if: ${{ !inputs.latest-build }}
7575
working-directory: ${{ env.PACKAGE_DIR }}
7676
run: |
7777
VERSION=${{ env.PACKAGE_VERSION }}
@@ -94,7 +94,7 @@ jobs:
9494
run: npm pack
9595

9696
- name: Restore version
97-
if: ${{ inputs.latest-build != 'true' }}
97+
if: ${{ !inputs.latest-build }}
9898
working-directory: ${{ env.PACKAGE_DIR }}
9999
run: |
100100
VERSION=${{ env.PACKAGE_VERSION }}

.github/workflows/npm-publish-expo-resource-fetcher.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ jobs:
7171
run: exit 1 # this should never happen
7272

7373
- name: Set nightly version
74-
if: ${{ inputs.latest-build != 'true' }}
74+
if: ${{ !inputs.latest-build }}
7575
working-directory: ${{ env.PACKAGE_DIR }}
7676
run: |
7777
VERSION=${{ env.PACKAGE_VERSION }}
@@ -94,7 +94,7 @@ jobs:
9494
run: npm pack
9595

9696
- name: Restore version
97-
if: ${{ inputs.latest-build != 'true' }}
97+
if: ${{ !inputs.latest-build }}
9898
working-directory: ${{ env.PACKAGE_DIR }}
9999
run: |
100100
VERSION=${{ env.PACKAGE_VERSION }}

packages/bare-resource-fetcher/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-executorch-bare-resource-fetcher",
3-
"version": "0.8.0-rc2",
3+
"version": "0.8.0-rc3",
44
"description": "Bare React Native resource fetcher for react-native-executorch",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

packages/expo-resource-fetcher/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "react-native-executorch-expo-resource-fetcher",
3-
"version": "0.8.0-rc2",
3+
"version": "0.8.0-rc3",
44
"description": "Expo resource fetcher for react-native-executorch",
55
"main": "lib/index.js",
66
"types": "lib/index.d.ts",

0 commit comments

Comments
 (0)