-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (42 loc) · 1.36 KB
/
java.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: Java CI
on:
push:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- uses: nelonoel/[email protected]
- uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Set version number
run: ./mvnw versions:set -DnewVersion=0.1.${{ github.run_number }}
- name: Build
run: ./mvnw package
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: 0.1.${{ github.run_number }}
release_name: Release 0.1.${{ github.run_number }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: target/randomquotesapi-lambda-0.1.${{ github.run_number }}.jar
asset_name: randomquotesapi-lambda.0.1.${{ github.run_number }}.jar
asset_content_type: application/zip
- name: Publish package
run: mvn --batch-mode deploy
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}