Skip to content

Commit

Permalink
Update package.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
seanmcne authored Dec 6, 2023
1 parent 5a428c5 commit 4354e4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: List all files/directories in root
run: ls
run: ls ${{ github.workspace }}

- name: Delete pshproj files
run: find . -name '*.pshproj' -delete
run: find ${{ github.workspace }} -name '*.pshproj' -delete

- name: Delete pssproj files
run: find . -name '*.pssproj' -delete
run: find ${{ github.workspace }} -name '*.pssproj' -delete

- name: Copy files
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 4354e4a

Please # to comment.