Skip to content

Commit e2e1d16

Browse files
authored
Create test_build.yml
work on markup build
1 parent b359100 commit e2e1d16

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflow/test_build.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Develop code to build markup files into HTML
2+
#
3+
name: test md to HTML
4+
5+
on: [workflow_dispatch]
6+
7+
permissions:
8+
contents: write
9+
id-token: write
10+
pages: write
11+
12+
jobs:
13+
build: # Build web pages
14+
runs-on: ubuntu-latest
15+
steps:
16+
17+
- name: Checkout
18+
uses: actions/checkout@v4
19+
20+
- name: Find tutorials
21+
run: |
22+
ls -R
23+
cd MDtutorials
24+
curl -L https://github.com/AdvancedPhotonSource/GSAS-II/raw/master/GSASII/tutorialIndex.py -o scripts/tutorialIndex.py
25+

0 commit comments

Comments
 (0)