forked from ballerina-platform/ballerina-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
66 lines (59 loc) · 2.35 KB
/
nightly_publish_timestamped_release.yml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
name: (Nightly) Publish Timestamped Snapshot Artifacts
on:
schedule:
- cron: '30 18 * * *' # 00:00 in LK time (GMT+5:30)
jobs:
publish-ballerina-lang:
name: Build and Publish Ballerina Lang
runs-on: ubuntu-latest
strategy:
fail-fast: false
max-parallel: 4
matrix:
branch: ['master', '2201.4.x', '2201.5.x', '2201.6.x']
timeout-minutes: 240
if: github.repository_owner == 'ballerina-platform'
steps:
- name: Checkout Repository
uses: actions/checkout@v2
with:
ref: ${{ matrix.branch }}
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
distribution: 'temurin'
java-version: '11'
- name: Initialize Sub Modules
run: git submodule update --init
- name: Change to Timestamped Version
run: |
startTime=$(TZ="Asia/Kolkata" date +'%Y%m%d-%H%M00')
latestCommit=$(git log -n 1 --pretty=format:"%h")
VERSION=$((grep -w 'version' | cut -d= -f2) < gradle.properties | rev | cut --complement -d- -f1 | rev)
updatedVersion=$VERSION-$startTime-$latestCommit
echo $updatedVersion
echo TIMESTAMPED_VERSION=$updatedVersion >> $GITHUB_ENV
sed -i "s/version=\(.*\)/version=$updatedVersion/g" gradle.properties
- name: Build and Publish
env:
publishUser: ${{ secrets.BALLERINA_BOT_USERNAME }}
publishPAT: ${{ secrets.BALLERINA_BOT_TOKEN }}
run: |
./gradlew clean build -x createJavadoc --scan --continue --rerun-tasks
./gradlew publish
./gradlew createCodeCoverageReport
curl -X POST \
'https://api.github.com/repos/ballerina-platform/ballerina-release/dispatches' \
-H 'Accept: application/vnd.github.v3+json' \
-H 'Authorization: Bearer ${{ secrets.BALLERINA_BOT_TOKEN }}' \
--data "{
\"event_type\": \"update_timestamped_version\",
\"client_payload\": {
\"branch\": \"${{ matrix.branch }}\",
\"timestamped_version\": \"${TIMESTAMPED_VERSION}\"
}
}"
- name: Generate Codecov Report
uses: codecov/codecov-action@v1
with:
files: ./.jacoco/reports/jacoco/report.xml