Skip to content

Commit fa2e6f8

Browse files
committed
fix upload to s3
1 parent ce487cc commit fa2e6f8

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
run: sbt "project nativeServer; assembly; GraalVMNativeImage / packageBin; Docker / publishLocal"
106106

107107
publish-jar:
108-
needs: [ci-2-12, ci-2-13, ci-docker]
108+
# needs: [ci-2-12, ci-2-13, ci-docker]
109109
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v'))
110110
runs-on: ubuntu-20.04
111111
steps:
@@ -136,7 +136,7 @@ jobs:
136136
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
137137

138138
- name: Upload to S3
139-
run: sbt "server / s3Upload"
139+
run: sbt "project server; assembly; s3Upload"
140140
env:
141141
S3_USER: ${{ secrets.S3_USER }}
142142
S3_PASSWORD: ${{ secrets.S3_PASSWORD }}
@@ -160,7 +160,7 @@ jobs:
160160
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
161161

162162
publish-docker:
163-
needs: [ci-2-12, ci-2-13, ci-docker]
163+
# needs: [ci-2-12, ci-2-13, ci-docker]
164164
if: github.event_name != 'pull_request' && (startsWith(github.ref, 'refs/tags/v'))
165165
runs-on: ubuntu-20.04
166166
steps:

0 commit comments

Comments
 (0)