Skip to content

Commit 8bc6b11

Browse files
authored
Merge branch 'stable' into release-3.3.3
2 parents 3eea34a + 2a18ec7 commit 8bc6b11

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/check-for-package-difference.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ on:
2323
package-location:
2424
description: 'File path to the package.json file to check. Includes the name of the file.'
2525
required: false
26-
default: 'etc/PackageTemplate/package.json'
26+
default: 'com.playeveryware.eos/package.json'
2727
type: string
2828

2929
env:
3030
NEW_BRANCH_NAME: ${{ github.head_ref || github.ref_name || inputs.new-branch || 'stable' }}
3131
OLD_BRANCH_NAME: ${{ inputs.old-branch || 'stable' }}
32-
PACKAGE_LOCATION: ${{ inputs.package-location || 'etc/PackageTemplate/package.json'}}
32+
PACKAGE_LOCATION: ${{ inputs.package-location }}
3333

3434
jobs:
3535
check_package_version_changed:
@@ -44,7 +44,7 @@ jobs:
4444
const response = await github.rest.repos.getContent({
4545
owner: context.repo.owner,
4646
repo: context.repo.repo,
47-
path: '${{ env.PACKAGE_LOCATION }}',
47+
path: 'com.playeveryware.eos/package.json',
4848
ref: '${{ env.NEW_BRANCH_NAME }}'
4949
});
5050
@@ -59,7 +59,7 @@ jobs:
5959
const response = await github.rest.repos.getContent({
6060
owner: context.repo.owner,
6161
repo: context.repo.repo,
62-
path: '${{ env.PACKAGE_LOCATION }}',
62+
path: 'etc/PackageTemplate/package.json',
6363
ref: '${{ env.OLD_BRANCH_NAME }}'
6464
});
6565

com.playeveryware.eos/Runtime/Core/EOSPackageInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ public static class EOSPackageInfo
3434
* near future it is important that these values change as part of the build process in an automated fashion that does
3535
* not involve editing source code files.
3636
*/
37-
37+
3838
public const string Version = "3.3.3";
3939

4040
public const string PackageName = "com.playeveryware.eos";

0 commit comments

Comments
 (0)