Skip to content

Commit

Permalink
fix: Update behave_pull_request.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
robbrad authored Jan 29, 2025
1 parent 6343348 commit 4c6590e
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/behave_pull_request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -200,6 +200,9 @@ jobs:
deploy:
name: Deploy Reports
runs-on: ubuntu-latest
strategy:
matrix:
python-version: [3.12]
permissions:
contents: write

Expand All @@ -213,7 +216,7 @@ jobs:
- uses: actions/download-artifact@v4
name: Download Full Artifacts
with:
name: allure_partial_history_3.12
name: allure_partial_history_${{ matrix.python-version }}
path: allure-history/tars

- name: Display structure of downloaded files
Expand All @@ -233,8 +236,8 @@ jobs:
# Move the files from the correct location and delete unnecessary folders
- name: Move files to the correct location
run: |
mkdir -p allure-history-partial/3.12 # Ensure the target directory exists
mv temp_extracted/allure-history-partial/* allure-history-partial/3.12/ # Move files to the target directory
mkdir -p allure-history-partial/ # Ensure the target directory exists
mv temp_extracted/allure-history-partial/* allure-history-partial/ # Move files to the target directory
rm -rf temp_extracted # Clean up the temporary extraction folder
# Remove the tar reports
Expand Down

0 comments on commit 4c6590e

Please sign in to comment.