alpha
Login
or
Join now
shuuji3.xyz
/
cesium-embed-sandcastle-google-maps-photorealistic-3d-tiles
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
[READ-ONLY] Mirror of https://github.com/shuuji3/cesium-embed-sandcastle-google-maps-photorealistic-3d-tiles.
shuuji3.github.io/cesium-embed-sandcastle-google-maps-photorealistic-3d-tiles/
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
Create static.yml
author
TAKAHASHI Shuuji
committer
GitHub
date
2 years ago
(Aug 21, 2024, 2:56 PM +0900)
commit
4476e043
4476e043eef80dcd2de1bbd1859e3ee79779be70
parent
b0204afd
b0204afd3262aab0a5973905c28ebf1b7ed4ae49
+43
1 changed file
Expand all
Collapse all
Unified
Split
.github
workflows
static.yml
+43
.github/workflows/static.yml
View file
Reviewed
···
1
1
+
# Simple workflow for deploying static content to GitHub Pages
2
2
+
name: Deploy static content to Pages
3
3
+
4
4
+
on:
5
5
+
# Runs on pushes targeting the default branch
6
6
+
push:
7
7
+
branches: ["main"]
8
8
+
9
9
+
# Allows you to run this workflow manually from the Actions tab
10
10
+
workflow_dispatch:
11
11
+
12
12
+
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
13
13
+
permissions:
14
14
+
contents: read
15
15
+
pages: write
16
16
+
id-token: write
17
17
+
18
18
+
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19
19
+
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
20
20
+
concurrency:
21
21
+
group: "pages"
22
22
+
cancel-in-progress: false
23
23
+
24
24
+
jobs:
25
25
+
# Single deploy job since we're just deploying
26
26
+
deploy:
27
27
+
environment:
28
28
+
name: github-pages
29
29
+
url: ${{ steps.deployment.outputs.page_url }}
30
30
+
runs-on: ubuntu-latest
31
31
+
steps:
32
32
+
- name: Checkout
33
33
+
uses: actions/checkout@v4
34
34
+
- name: Setup Pages
35
35
+
uses: actions/configure-pages@v5
36
36
+
- name: Upload artifact
37
37
+
uses: actions/upload-pages-artifact@v3
38
38
+
with:
39
39
+
# Upload entire repository
40
40
+
path: '.'
41
41
+
- name: Deploy to GitHub Pages
42
42
+
id: deployment
43
43
+
uses: actions/deploy-pages@v4