Skip to content

Commit 377db1c

Browse files
committed
Cleanup
1 parent b11f0e8 commit 377db1c

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.env

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,13 @@
1-
# Get the current branch, from CI variables if for a pull-reqest or push trigger; otherwise fallback to the current local git branch
1+
# Get the current git values from GitHub Action variables if triggered from pull-reqest or push; otherwise fallback to the current local git branch
22
BRANCH="$(git branch --show-current)"
33
BRANCH=${PULL_REQUEST_HEAD_REF:-${GITHUB_REF_NAME:-${BRANCH}}}
44
COMMIT_SHA="$(git rev-parse HEAD)"
55
COMMIT_SHA=${PULL_REQUEST_HEAD_SHA:-${GITHUB_SHA:-${COMMIT_SHA}}}
66

7+
# Read the Cesium version from package.json
78
CESIUM_VERSION=$(npm pkg get version | tr -d '"')
89

10+
# Build artifact configuration
911
BUILD_ARTIFACT_BUCKET="cesium-public-builds"
1012
BUILD_ARTIFACT_URL="https://ci-builds.cesium.com/cesium/${BRANCH}"
1113

package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@
9696
"markdownlint-cli": "^0.45.0",
9797
"merge-stream": "^2.0.0",
9898
"mkdirp": "^3.0.1",
99-
"node-fetch": "^3.2.10",
10099
"open": "^10.0.2",
101100
"prettier": "3.6.2",
102101
"prismjs": "^1.28.0",

0 commit comments

Comments
 (0)