Skip to content

Commit

Permalink
More directory changing
Browse files Browse the repository at this point in the history
  • Loading branch information
TylerCode committed Jan 6, 2024
1 parent 39045e1 commit cb0a9a6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/archive-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:
- name: Archive Repository
run: |
mkdir temp
cp -R * .github .gitignore temp/
# Copy all files and directories except 'temp'
shopt -s extglob
cp -R !(temp) temp/
tar -czf repo-archive.tar.gz temp
- name: Upload Archive as Artifact
Expand Down

0 comments on commit cb0a9a6

Please sign in to comment.