File tree 2 files changed +7
-4
lines changed
2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -93,15 +93,15 @@ jobs:
93
93
run : sbt 'project ${{ matrix.project }}' '++${{ matrix.scala }}' doc
94
94
95
95
- name : Make target directories
96
- if : github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
96
+ if : github.event_name != 'pull_request' && (github.ref == 'refs/heads/main')
97
97
run : mkdir -p target .js/target core/.native/target core/.js/target core/.jvm/target .jvm/target .native/target project/target
98
98
99
99
- name : Compress target directories
100
- if : github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
100
+ if : github.event_name != 'pull_request' && (github.ref == 'refs/heads/main')
101
101
run : tar cf targets.tar target .js/target core/.native/target core/.js/target core/.jvm/target .jvm/target .native/target project/target
102
102
103
103
- name : Upload target directories
104
- if : github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
104
+ if : github.event_name != 'pull_request' && (github.ref == 'refs/heads/main')
105
105
uses : actions/upload-artifact@v2
106
106
with :
107
107
name : target-${{ matrix.os }}-${{ matrix.java }}-${{ matrix.scala }}-${{ matrix.project }}
@@ -110,7 +110,7 @@ jobs:
110
110
publish :
111
111
name : Publish Artifacts
112
112
needs : [build]
113
- if : github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main')
113
+ if : github.event_name != 'pull_request' && (github.ref == 'refs/heads/main')
114
114
strategy :
115
115
matrix :
116
116
os : [ubuntu-latest]
Original file line number Diff line number Diff line change @@ -12,6 +12,9 @@ ThisBuild / startYear := Some(2013)
12
12
13
13
ThisBuild / tlJdkRelease := Some (8 )
14
14
15
+ ThisBuild / tlSonatypeUseLegacyHost := false
16
+ ThisBuild / tlCiReleaseTags := false
17
+
15
18
lazy val root = tlCrossRootProject
16
19
.aggregate(core)
17
20
.settings(
You can’t perform that action at this time.
0 commit comments