File tree Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Expand file tree Collapse file tree 2 files changed +3
-2
lines changed Original file line number Diff line number Diff line change 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
22BRANCH = " $( git branch --show-current) "
33BRANCH = ${ PULL_REQUEST_HEAD_REF:-${GITHUB_REF_NAME:-${BRANCH } }}
44COMMIT_SHA = " $( git rev-parse HEAD) "
55COMMIT_SHA = ${ PULL_REQUEST_HEAD_SHA:-${GITHUB_SHA:-${COMMIT_SHA } }}
66
7+ # Read the Cesium version from package.json
78CESIUM_VERSION = $( npm pkg get version | tr -d ' "' )
89
10+ # Build artifact configuration
911BUILD_ARTIFACT_BUCKET = " cesium-public-builds"
1012BUILD_ARTIFACT_URL = " https://ci-builds.cesium.com/cesium/${ BRANCH } "
1113
Original file line number Diff line number Diff line change 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" ,
You can’t perform that action at this time.
0 commit comments