File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 17
17
- name : Verify RC version input
18
18
run : |
19
19
./scripts/rc_release_check.sh ${{github.event.inputs.version}}
20
+ - name : Configure AWS Credentials (OIDC)
21
+ uses : aws-actions/configure-aws-credentials@v1
22
+ with :
23
+ role-to-assume : ${{ secrets.AWS_ROLE_TO_ASSUME }}
24
+ aws-region : us-east-1
20
25
- name : Login to DockerHub
21
26
uses : docker/login-action@v3
22
27
with :
25
30
- name : Download and verify JAR(s)
26
31
run : |
27
32
./scripts/jar.sh "${{github.event.inputs.manifest}}"
33
+ - name : Release Kpow JDK11 JAR
34
+ run : |
35
+ VERSION=${{github.event.inputs.version}}
36
+ VERSION="${VERSION//./-}"
37
+ aws s3 cp target/kpow-java11-standalone.jar s3://${{ secrets.RELEASES_BUCKET }}/kpow-$VERSION-java11.jar
38
+ - name : Release Kpow JDK8 JAR
39
+ run : |
40
+ VERSION=${{github.event.inputs.version}}
41
+ VERSION="${VERSION//./-}"
42
+ aws s3 cp target/kpow-java8-standalone.jar s3://${{ secrets.RELEASES_BUCKET }}/kpow-$VERSION-java8.jar
28
43
-
29
44
# Add support for more platforms with QEMU (optional)
30
45
# https://github.com/docker/setup-qemu-action
You can’t perform that action at this time.
0 commit comments