File tree 2 files changed +9
-2
lines changed
2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change @@ -160,7 +160,9 @@ jobs:
160
160
- if : startsWith(github.ref, 'refs/tags/')
161
161
run : sbt ++${{ matrix.scala }} nativeImage
162
162
163
+ - run : mv target/native-image/spotify-next target/native-image/spotify-next-${{ matrix.os }}
164
+
163
165
- if : startsWith(github.ref, 'refs/tags/')
164
166
uses : softprops/action-gh-release@v1
165
167
with :
166
- files : target/native-image/spotify-next-${{ matrix.os }}
168
+ files : target/native-image/spotify-next
Original file line number Diff line number Diff line change @@ -45,9 +45,14 @@ ThisBuild / githubWorkflowGeneratedCI ~= {
45
45
List (" nativeImage" ),
46
46
cond = Some (" startsWith(github.ref, 'refs/tags/')" )
47
47
),
48
+ WorkflowStep .Run (
49
+ List (
50
+ " mv target/native-image/spotify-next target/native-image/spotify-next-${{ matrix.os }}"
51
+ )
52
+ ),
48
53
WorkflowStep .Use (
49
54
UseRef .Public (" softprops" , " action-gh-release" , " v1" ),
50
- params = Map (" files" -> " target/native-image/spotify-next-${{ matrix.os }} " ),
55
+ params = Map (" files" -> " target/native-image/spotify-next" ),
51
56
cond = Some (" startsWith(github.ref, 'refs/tags/')" )
52
57
)
53
58
)
You can’t perform that action at this time.
0 commit comments