Skip to content

Commit

Permalink
ci: split find up
Browse files Browse the repository at this point in the history
  • Loading branch information
stevana committed Oct 22, 2024
1 parent d192c55 commit ec75c7a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,9 @@ jobs:
ls -R "${{github.workspace }}/dist-newstyle/build"
mkdir -p "${{ github.workspace }}/bin"
cp "$(find ${{ github.workspace }}/dist-newstyle \
\( -name spex -o -name spex-demo-petstore \) -type f -executable)" \
"${{ github.workspace }}/bin"
-name spex -type f -executable)" "${{ github.workspace }}/bin"
cp "$(find ${{ github.workspace }}/dist-newstyle \
-name spex-demo-petstore -type f -executable)" "${{ github.workspace }}/bin"
- name: Create new git tag, if merge to main and .cabal version is bumped
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
Expand Down

0 comments on commit ec75c7a

Please sign in to comment.