Skip to content

Commit

Permalink
test new github action workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Mohammad-Dwairi committed Jul 2, 2024
1 parent 6acf3c6 commit 3a2e648
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/generate-docs-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,13 @@ jobs:
- name: Move latest release to the older directory
run: |
VERSION=$(jq -r '.version' version.json)
mkdir older/${{ VERSION }}
rsync -av --exclude='older' --exclude='.git' --exclude='README.md' ./ older/${{ VERSION }}
echo "VERSION=$VERSION" >> $GITHUB_ENV
mkdir older/${{ env.VERSION }}
rsync -av --exclude='older' --exclude='.git' --exclude='README.md' ./ older/${{ env.VERSION }}
- name: List older directory content (debug)
run: |
cd older/${{ VERSION }}
cd older/${{ env.VERSION }}
ls

0 comments on commit 3a2e648

Please sign in to comment.