Skip to content

Commit 63d35b3

Browse files
committed
Removed artifact upload steps
1 parent 8f05f22 commit 63d35b3

File tree

2 files changed

+1
-39
lines changed

2 files changed

+1
-39
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -68,15 +68,6 @@ jobs:
6868

6969
- run: sbt ++${{ matrix.scala }} '${{ matrix.ci }}'
7070

71-
- name: Compress target directories
72-
run: tar cf targets.tar target root/target core/target webworker/target project/target
73-
74-
- name: Upload target directories
75-
uses: actions/upload-artifact@v2
76-
with:
77-
name: target-${{ matrix.os }}-${{ matrix.scala }}-${{ matrix.java }}
78-
path: targets.tar
79-
8071
publish:
8172
name: Publish Artifacts
8273
needs: [build]
@@ -110,36 +101,6 @@ jobs:
110101
~/Library/Caches/Coursier/v1
111102
key: ${{ runner.os }}-sbt-cache-v2-${{ hashFiles('**/*.sbt') }}-${{ hashFiles('project/build.properties') }}
112103

113-
- name: Download target directories (2.12.14)
114-
uses: actions/download-artifact@v2
115-
with:
116-
name: target-${{ matrix.os }}-2.12.14-${{ matrix.java }}
117-
118-
- name: Inflate target directories (2.12.14)
119-
run: |
120-
tar xf targets.tar
121-
rm targets.tar
122-
123-
- name: Download target directories (2.13.6)
124-
uses: actions/download-artifact@v2
125-
with:
126-
name: target-${{ matrix.os }}-2.13.6-${{ matrix.java }}
127-
128-
- name: Inflate target directories (2.13.6)
129-
run: |
130-
tar xf targets.tar
131-
rm targets.tar
132-
133-
- name: Download target directories (3.0.1)
134-
uses: actions/download-artifact@v2
135-
with:
136-
name: target-${{ matrix.os }}-3.0.1-${{ matrix.java }}
137-
138-
- name: Inflate target directories (3.0.1)
139-
run: |
140-
tar xf targets.tar
141-
rm targets.tar
142-
143104
- name: Import signing key
144105
run: echo $PGP_SECRET | base64 -d | gpg --import
145106

build.sbt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,7 @@ addCommandAlias("ciJSDOMNodeJS", "; set useJSEnv := JSEnv.JSDOMNodeJS; core/test
7373
enablePlugins(SonatypeCiReleasePlugin)
7474

7575
ThisBuild / spiewakMainBranches := Seq("main")
76+
ThisBuild / githubWorkflowArtifactUpload := false
7677

7778
// we can remove this once we have a non-password-protected key in the secrets
7879
ThisBuild / githubWorkflowPublishPreamble +=

0 commit comments

Comments
 (0)