Skip to content

Commit

Permalink
Fixes scala deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
nkcr committed Jan 25, 2023
1 parent 6f52f67 commit c5040e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -145,11 +145,11 @@ jobs:
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ${{ env.base_folder }}/target/scala-${{ scala_version }}/pop-assembly-*
files: ${{ env.base_folder }}/target/scala-${{ env.scala_version }}/pop-assembly-*

- name: Copy jar
run: |
find target/scala-${{ scala_version }} -type f -name 'pop-assembly-*' -exec sh -c 'x="{}"; cp "$x" "pop-scala.jar"' \;
find target/scala-${{ env.scala_version }} -type f -name 'pop-assembly-*' -exec sh -c 'x="{}"; cp "$x" "pop-scala.jar"' \;
# Use rsync to deploy the new website
- name: Sync
Expand Down

0 comments on commit c5040e2

Please sign in to comment.