Skip to content

Commit

Permalink
fixing permission issues
Browse files Browse the repository at this point in the history
Signed-off-by: Antonio Martinez <jose.antonio.martinez.torres@intel.com>
  • Loading branch information
antoniomtz committed Oct 29, 2024
1 parent 83d0505 commit 1458b4e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/github-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,18 @@ jobs:
with:
python-version: 3.x
- name: Create /apis Directory
run: mkdir -p /apis
run: mkdir -p ./apis

- name: Download Performance Tools
run: wget -P /apis https://github.com/intel-retail/performance-tools/archive/refs/heads/main.zip
run: wget -P ./apis https://github.com/intel-retail/performance-tools/archive/refs/heads/main.zip

- name: Unzip Performance Tools
run: unzip /apis/main.zip -d /apis
run: unzip ./apis/main.zip -d ./apis

- name: Move Benchmark Scripts
run: |
mkdir -p /benchmark-scripts
mv /apis/performance-tools-main/benchmark-scripts/* /benchmark-scripts
mkdir -p ./benchmark-scripts
mv ./apis/performance-tools-main/benchmark-scripts/* ./benchmark-scripts
- name: Install mkdocs
run: |
pip install mkdocs "mkdocs-material>=8.2" "mkdocs-htmlproofer-plugin>=0.8"
Expand Down

0 comments on commit 1458b4e

Please sign in to comment.