Skip to content

Commit

Permalink
fix upload to s3
Browse files Browse the repository at this point in the history
  • Loading branch information
micossow committed Nov 8, 2022
1 parent ce487cc commit fa2e6f8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ jobs:
run: sbt "project nativeServer; assembly; GraalVMNativeImage / packageBin; Docker / publishLocal"

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

- name: Upload to S3
run: sbt "server / s3Upload"
run: sbt "project server; assembly; s3Upload"
env:
S3_USER: ${{ secrets.S3_USER }}
S3_PASSWORD: ${{ secrets.S3_PASSWORD }}
Expand All @@ -160,7 +160,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

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

0 comments on commit fa2e6f8

Please sign in to comment.