Skip to content

Commit

Permalink
Fix missing quote mark; typo, Ln 52
Browse files Browse the repository at this point in the history
Signed-off-by: michael vincerra <michael.vincerra@intel.com>
  • Loading branch information
mvincerx committed Oct 14, 2024
1 parent 842e76a commit dfe7934
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,24 +33,24 @@ on:
jobs:
pages:
name: Build GitHub Pages
runs-on: ubuntu-latest
runs-on: ubuntu-latest

steps:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: "3.8"

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

- uses: actions/checkout@v3
name: Check out main
with:
ref: 'refs/heads/main
ref: 'refs/heads/main'
path: main

# TODO: change to 'python3 app/dev/src/db.py main' per actions/checkout@3
Expand All @@ -72,10 +72,10 @@ jobs:
echo ${{ github.ref }}
- name: Add GPU-Occupancy-Calculator
env:
env:
GPU_OCC_CALC: src/docs/_build/Tools/GPU-Occupancy-Calculator/
run: |
mkdir -p ${GPU_OCC_CALC}
mkdir -p ${GPU_OCC_CALC}
cd ${GPU_OCC_CALC}
wget https://raw.githubusercontent.com/oneapi-src/oneAPI-samples/main/Tools/GPU-Occupancy-Calculator/index.html
Expand All @@ -84,10 +84,10 @@ jobs:
env:
GITHUB_USER: ${{ github.actor }}
GITHUB_TOKEN: ${{ github.token }}
GITHUB_REPO: ${{ github.repository }}
GITHUB_REPO: ${{ github.repository }}
run: |
cd src/docs/_build/
touch .nojekyll
touch .nojekyll
git init
git remote add origin "https://${GITHUB_USER}:${GITHUB_TOKEN}@github.com/${GITHUB_REPO}"
git add -A
Expand Down

0 comments on commit dfe7934

Please sign in to comment.