Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
jacqueline-57b committed Jul 16, 2024
1 parent b5e92d1 commit 9fae3e4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/run-e2e-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
folder_name=$(date +%Y%m%d)
echo "Folder name: $folder_name"
mkdir -p $folder_name
mkdir -p ./tmp/$folder_name
cp -R ./test-reports/* $folder_name
echo "::set-output name=folder_name::$folder_name"
Expand All @@ -79,7 +79,7 @@ jobs:
id: echo-echo-echo
run: |
echo ${{ steps.create_folder.outputs.folder_name }}
cd ${{ steps.create_folder.outputs.folder_name }}
cd ./tmp/${{ steps.create_folder.outputs.folder_name }}
ls -al
# Deploy report to GitHub Pages
Expand All @@ -88,6 +88,6 @@ jobs:
uses: peaceiris/actions-gh-pages@v4
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ${{ steps.create_folder.outputs.folder_name }}
publish_dir: ./tmp
publish_branch: gh-pages
keep_files: true

0 comments on commit 9fae3e4

Please sign in to comment.