Skip to content

Commit dfe7934

Browse files
committed
Fix missing quote mark; typo, Ln 52
Signed-off-by: michael vincerra <[email protected]>
1 parent 842e76a commit dfe7934

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/github-pages.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -33,24 +33,24 @@ on:
3333
jobs:
3434
pages:
3535
name: Build GitHub Pages
36-
runs-on: ubuntu-latest
36+
runs-on: ubuntu-latest
3737

3838
steps:
3939
- name: Set up Python
4040
uses: actions/setup-python@v4
4141
with:
4242
python-version: "3.8"
4343

44-
# - run: find | sort
45-
- uses: actions/checkout@v3
44+
# - run: find | sort
45+
- uses: actions/checkout@v3
4646
# with:
4747
# path: app/dev
4848
# Adding above 2 lines forces pre-pending filepaths below w/ 'app/dev/filepath'
4949

5050
- uses: actions/checkout@v3
5151
name: Check out main
5252
with:
53-
ref: 'refs/heads/main
53+
ref: 'refs/heads/main'
5454
path: main
5555

5656
# TODO: change to 'python3 app/dev/src/db.py main' per actions/checkout@3
@@ -72,10 +72,10 @@ jobs:
7272
echo ${{ github.ref }}
7373
7474
- name: Add GPU-Occupancy-Calculator
75-
env:
75+
env:
7676
GPU_OCC_CALC: src/docs/_build/Tools/GPU-Occupancy-Calculator/
7777
run: |
78-
mkdir -p ${GPU_OCC_CALC}
78+
mkdir -p ${GPU_OCC_CALC}
7979
cd ${GPU_OCC_CALC}
8080
wget https://raw.githubusercontent.com/oneapi-src/oneAPI-samples/main/Tools/GPU-Occupancy-Calculator/index.html
8181
@@ -84,10 +84,10 @@ jobs:
8484
env:
8585
GITHUB_USER: ${{ github.actor }}
8686
GITHUB_TOKEN: ${{ github.token }}
87-
GITHUB_REPO: ${{ github.repository }}
87+
GITHUB_REPO: ${{ github.repository }}
8888
run: |
8989
cd src/docs/_build/
90-
touch .nojekyll
90+
touch .nojekyll
9191
git init
9292
git remote add origin "https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/${GITHUB_REPO}"
9393
git add -A

0 commit comments

Comments
 (0)