We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 97c6dd4 + b0118c2 commit eb0bdccCopy full SHA for eb0bdcc
1 file changed
.github/workflows/update-version.yml
@@ -121,6 +121,14 @@ jobs:
121
sed -i -E "s/[0-9]+\.[0-9]+\.[0-9]+/$NEW_VERSION/g" $FILE
122
echo "Updated SDK version in SdkVersionInfoHelpers.cs to $NEW_VERSION"
123
124
+ - name: Update LibraryVersion in Constants.cs
125
+ if: env.PACKAGE == 'audience'
126
+ run: |
127
+ FILE=./src/Packages/Audience/Runtime/Core/Constants.cs
128
+ NEW_VERSION="${{ steps.replace_version.outputs.version }}"
129
+ sed -i -E "s/LibraryVersion = \"[0-9]+\.[0-9]+\.[0-9]+\"/LibraryVersion = \"$NEW_VERSION\"/" $FILE
130
+ echo "Updated LibraryVersion in Constants.cs to $NEW_VERSION"
131
+
132
- name: Ensure Samples~/SamplesScenesScripts directory exists and clear contents
133
if: env.PACKAGE == 'passport'
134
run: |
0 commit comments