Skip to content

Commit

Permalink
Extract Sample Project
Browse files Browse the repository at this point in the history
  • Loading branch information
hoontee committed Jul 9, 2023
1 parent 5015e4a commit b596acd
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/Publish-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,12 @@ jobs:

# Exclusive to the sample workflow; please this step!
- name: Extract Sample Project
run: move "Sample Project/*" ./
run: |
MOVE "Sample Project" "../temp"
Get-ChildItem "./" -Recurse | Remove-Item -Recurse
MOVE "../temp" "./"
Remove-Item -Path "../temp" -Force -Recurse
DIR
# aftman.toml is currently required to download Lune and build offline.
- name: Setup Aftman
Expand Down

0 comments on commit b596acd

Please sign in to comment.