-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin' into cesium.com
- Loading branch information
Showing
160 changed files
with
7,947 additions
and
2,409 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
name: deploy | ||
on: | ||
push: | ||
branches-ignore: | ||
- 'cesium.com' | ||
- production | ||
concurrency: | ||
group: deploy-${{ github.ref }} | ||
cancel-in-progress: true | ||
jobs: | ||
deploy: | ||
runs-on: ubuntu-latest | ||
permissions: | ||
statuses: write | ||
contents: read | ||
env: | ||
BUILD_VERSION: ${{ github.ref_name }}.${{ github.run_number }} | ||
AWS_ACCESS_KEY_ID: ${{ secrets.DEV_AWS_ACCESS_KEY_ID }} | ||
AWS_SECRET_ACCESS_KEY: ${{ secrets.DEV_AWS_SECRET_ACCESS_KEY }} | ||
AWS_REGION: us-east-1 | ||
BRANCH: ${{ github.ref_name }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_REPO: ${{ github.repository }} | ||
GITHUB_SHA: ${{ github.sha }} | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: install node 20 | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '20' | ||
- name: npm install | ||
run: npm install | ||
- name: set the version in package.json | ||
run: npm run deploy-set-version -- --buildVersion $BUILD_VERSION | ||
- name: create release zip | ||
run: npm run make-zip | ||
- name: package cesium module | ||
run: npm pack &> /dev/null | ||
- name: package workspace modules | ||
run: npm pack --workspaces &> /dev/null | ||
- name: build apps | ||
run: npm run build-apps | ||
- uses: ./.github/actions/verify-package | ||
- name: deploy to s3 | ||
if: ${{ env.AWS_ACCESS_KEY_ID != '' }} | ||
run: | | ||
aws s3 sync . s3://cesium-public-builds/cesium/$BRANCH/ \ | ||
--cache-control "no-cache" \ | ||
--exclude ".git/*" \ | ||
--exclude ".concierge/*" \ | ||
--exclude ".github/*" \ | ||
--exclude ".husky/*" \ | ||
--exclude ".vscode/*" \ | ||
--exclude "Build/Coverage/*" \ | ||
--exclude "Build/CesiumDev/*" \ | ||
--exclude "Build/Specs/e2e" \ | ||
--exclude "Documentation/*" \ | ||
--exclude "node_modules/*" \ | ||
--exclude "scripts/*" \ | ||
--exclude "Tools/*" \ | ||
--delete | ||
- name: set status | ||
if: ${{ env.AWS_ACCESS_KEY_ID != '' }} | ||
run: npm run deploy-status -- --status success --message Deployed |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
name: main | ||
on: | ||
workflow_run: | ||
workflows: [dev] | ||
workflows: [dev, prod] | ||
types: [completed] | ||
branches: | ||
- main | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.