Skip to content

Commit 59da960

Browse files
documentation update
1 parent ee37959 commit 59da960

1 file changed

Lines changed: 4 additions & 12 deletions

File tree

.github/workflows/deploy.yml

Lines changed: 4 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,21 @@
1-
# Deploy TEP-GNSS-RINEX to GitHub Pages
1+
# Standard GitHub Pages deploy: default branch → build site/ → publish site/dist
22
name: Deploy to GitHub Pages
33

44
on:
5-
# Runs on pushes targeting the default branch
65
push:
7-
branches: ["master"]
8-
9-
# Allows you to run this workflow manually from the Actions tab
6+
branches: ["master", "main"]
107
workflow_dispatch:
118

12-
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
139
permissions:
1410
contents: read
1511
pages: write
1612
id-token: write
1713

18-
# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
19-
# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
2014
concurrency:
2115
group: "pages"
2216
cancel-in-progress: false
2317

2418
jobs:
25-
# Build job
2619
build:
2720
runs-on: ubuntu-latest
2821
steps:
@@ -32,8 +25,8 @@ jobs:
3225
- name: Setup Node.js
3326
uses: actions/setup-node@v4
3427
with:
35-
node-version: '20'
36-
cache: 'npm'
28+
node-version: "20"
29+
cache: "npm"
3730
cache-dependency-path: site/package-lock.json
3831

3932
- name: Install dependencies
@@ -52,7 +45,6 @@ jobs:
5245
with:
5346
path: site/dist
5447

55-
# Deployment job
5648
deploy:
5749
environment:
5850
name: github-pages

0 commit comments

Comments
 (0)