Skip to content

Commit 0017b1d

Browse files
committed
add GitHub Actions
1 parent 6c462d9 commit 0017b1d

3 files changed

Lines changed: 26 additions & 0 deletions

File tree

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: ci
2+
on:
3+
push:
4+
branches:
5+
- main
6+
permissions:
7+
contents: write
8+
jobs:
9+
deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
- uses: actions/setup-python@v4
14+
with:
15+
python-version: 3.x
16+
- uses: actions/cache@v2
17+
with:
18+
key: ${{ github.ref }}
19+
path: .cache
20+
- run: pip install git+https://${GH_TOKEN}@github.com/squidfunk/mkdocs-material-insiders.git
21+
- run: pip install mkdocs-table-reader-plugin
22+
- run: mkdocs gh-deploy --force
23+
env:
24+
GH_TOKEN: ${{ secrets.GH_TOKEN }}

docs/index.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ icon: octicons/home-24
88

99
# Welcome to OpenGeoMetadata
1010

11+
test
12+
1113
OpenGeoMetadata is a discovery metadata schema for geospatial resources and an open platform for sharing metadata files.
1214

1315

site/sitemap.xml.gz

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)