Skip to content

Commit 9879dda

Browse files
Fix CI for creating artifacts
1 parent 83ce342 commit 9879dda

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@ jobs:
3737

3838
- name: Create release artifacts
3939
run: |
40-
version=$(sbt "print cli/version" | tail -n1)
40+
version=$(sbt "print cli/version" | grep . | tail -n 2 | head -n 1)
4141
echo "This build version: $version"
42-
./scritps/dist.sh $version
42+
./scripts/dist.sh $version
4343
4444
- name: Archive CLI artifacts
4545
uses: actions/upload-artifact@v3

0 commit comments

Comments
 (0)