fix yaml?
[yosql.git] / .github / workflows / release.yml
blobcc52c59a6c30e3bfbc420081bc50790342f9f6f6
1 name: Perform Release
2 on:
3   schedule:
4     - cron:  "25 3 * * SUN"
5   workflow_dispatch:
6 env:
7   JAVA_VERSION: 16
8   JAVA_PACKAGE: jdk
9   JAVA_ARCH: x64
10   JAVA_DISTRO: adopt
11   PROJECT_URL: yosql.projects.metio.wtf
12 jobs:
13   prepare:
14     name: Prepare Release
15     runs-on: ubuntu-latest
16     outputs:
17       commit_count: ${{ steps.commits.outputs.count }}
18       release_version: ${{ steps.release.outputs.version }}
19       previous_version: ${{ steps.previous.outputs.version }}
20       changelog: ${{ steps.changelog.outputs.content }}
21       release_url: ${{ steps.create_release.outputs.upload_url }}
22     steps:
23       - id: checkout
24         name: Clone Git Repository
25         uses: actions/checkout@v2
26         with:
27           fetch-depth: 0 # required in order to get all tags
28       - id: commits
29         name: Count Commits
30         run: echo "::set-output name=count::$(git rev-list --count HEAD --since='last Sunday' -- yosql-codegen yosql-converters yosql-dao yosql-internals yosql-logging yosql-models yosql-testing yosql-tooling)"
31       - id: release
32         name: Create Release Version
33         if: steps.commits.outputs.count > 0
34         run: echo "::set-output name=version::$(date +'%Y.%-m.%-d')"
35       - id: previous
36         name: Get Last Release
37         if: steps.commits.outputs.count > 0
38         run: echo "::set-output name=version::$(git describe --abbrev=0 --tags)"
39       - id: generate_changelog
40         name: Generate Changelog
41         if: steps.commits.outputs.count > 0
42         uses: heinrichreimer/github-changelog-generator-action@v2.2
43         with:
44           token: ${{ secrets.GITHUB_TOKEN }}
45           unreleased: true
46           issues: true
47           issuesWoLabels: true
48           pullRequests: true
49           prWoLabels: true
50           filterByMilestone: false
51           futureRelease: ${{ steps.release.outputs.version }}
52           sinceTag: ${{ steps.previous.outputs.version }}
53           stripGeneratorNotice: true
54           stripHeaders: true
55       - name: Check Changelog Existence
56         id: check_changelog
57         uses: andstor/file-existence-action@v1
58         with:
59           files: "CHANGELOG.md"
60       - name: Create Empty Changelog
61         id: empty_changelog
62         uses: 1arp/create-a-file-action@0.2
63         if: steps.check_changelog.outputs.files_exists == 'false'
64         with:
65           file: CHANGELOG.md
66           content: |
67             no user facing changes
68       - name: Read Changelog
69         id: changelog
70         uses: juliangruber/read-file-action@v1
71         with:
72           path: ./CHANGELOG.md
73       - id: create_release
74         name: Create Release
75         if: steps.commits.outputs.count > 0
76         uses: actions/create-release@v1
77         env:
78           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
79         with:
80           tag_name: ${{ steps.release.outputs.version }}
81           release_name: ${{ steps.release.outputs.version }}
82           draft: false
83           prerelease: false
84           body: |
85             # YoSQL
86             Write more SQL! Take a look at the [website](https://${{ env.PROJECT_URL }}/) for detailed information. **This release requires at least Java ${{ env.JAVA_VERSION }}**.
87             ## Changes
88             ${{ steps.changelog.outputs.content }}
89   deploy:
90     name: Deploy Artifacts
91     runs-on: ubuntu-latest
92     needs: prepare
93     steps:
94       - id: checkout
95         name: Clone Git Repository
96         uses: actions/checkout@v2
97         if: needs.prepare.outputs.commit_count > 0
98       - id: java
99         name: Setup Java
100         uses: actions/setup-java@v2
101         if: needs.prepare.outputs.commit_count > 0
102         with:
103           java-version: ${{ env.JAVA_VERSION }}
104           java-package: ${{ env.JAVA_PACKAGE }}
105           architecture: ${{ env.JAVA_ARCH }}
106           distribution: ${{ env.JAVA_DISTRO }}
107           server-id: ossrh
108           server-username: MAVEN_CENTRAL_USERNAME
109           server-password: MAVEN_CENTRAL_TOKEN
110       - id: cache
111         name: Cache Maven Repository
112         uses: actions/cache@v2.1.5
113         if: needs.prepare.outputs.commit_count > 0
114         with:
115           path: ~/.m2/repository
116           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
117           restore-keys: |
118             ${{ runner.os }}-maven-
119       - id: gpg
120         name: GPG Key
121         run: echo "${{ secrets.GPG_SECRET_KEY_BASE64 }}" | base64 --decode > $GITHUB_WORKSPACE/signing.key.asc
122       - name: Set release version
123         run: mvn --batch-mode versions:set -DnewVersion=${{ needs.prepare.outputs.release_version }} -DgenerateBackupPoms=false
124         if: needs.prepare.outputs.commit_count > 0
125       - id: deploy-maven
126         name: Deploy Maven Artifacts
127         run: mvn --batch-mode install deploy --activate-profiles release verify deploy -Dpgp.secretkey=keyfile:$GITHUB_WORKSPACE/signing.key.asc -Dpgp.passphrase=literal:${{ secrets.GPG_SECRET_KEY_PASSWORD }}
128         if: needs.prepare.outputs.commit_count > 0
129         env:
130           MAVEN_CENTRAL_USERNAME: ${{ secrets.MAVEN_CENTRAL_USERNAME }}
131           MAVEN_CENTRAL_TOKEN: ${{ secrets.MAVEN_CENTRAL_TOKEN }}
132       - id: deploy-gradle
133         name: Deploy Gradle Plugin
134         run: cd ./yosql-tooling/yosql-tooling-gradle/ && ./gradlew publishPlugins -Pversion=${{ needs.prepare.outputs.release_version }} -Pgradle.publish.key=${{ secrets.GRADLE_PUBLISH_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_PUBLISH_SECRET }}
135         if: needs.prepare.outputs.commit_count > 0
136   benchmarks:
137     name: Run Benchmarks
138     runs-on: ubuntu-latest
139     needs: [deploy]
140     strategy:
141       matrix:
142         benchmark: [codegen, jdbc]
143     steps:
144       - id: checkout
145         name: Clone Git Repository
146         uses: actions/checkout@v2
147         if: needs.prepare.outputs.commit_count > 0
148       - id: java
149         name: Setup Java
150         uses: actions/setup-java@v2
151         if: needs.prepare.outputs.commit_count > 0
152         with:
153           java-version: ${{ env.JAVA_VERSION }}
154           java-package: ${{ env.JAVA_PACKAGE }}
155           architecture: ${{ env.JAVA_ARCH }}
156           distribution: ${{ env.JAVA_DISTRO }}
157       - id: cache
158         name: Cache Maven Repository
159         uses: actions/cache@v2.1.5
160         if: needs.prepare.outputs.commit_count > 0
161         with:
162           path: ~/.m2/repository
163           key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
164           restore-keys: |
165             ${{ runner.os }}-maven-
166       - id: run-benchmark
167         name: Run Benchmark [${{ matrix.benchmark }}]
168         run: mvn --batch-mode --projects yosql-benchmarks/yosql-benchmarks-${{ matrix.benchmark }} --also-make --activate-profiles benchmarks verify -Dorg.slf4j.simpleLogger.log.yosql=warn -DskipTests 2>&1 1> build.log
169         if: needs.prepare.outputs.commit_count > 0
170         env:
171           GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
172       - id: upload-benchmark
173         name: Upload Benchmark Results
174         uses: actions/upload-artifact@v2
175         if: needs.prepare.outputs.commit_count > 0
176         with:
177           name: benchmark-${{ matrix.benchmark }}
178           path: ./yosql-benchmarks/yosql-benchmarks-${{ matrix.benchmark }}/target/benchmark/yosql-benchmarks-${{ matrix.benchmark }}.json
179   results:
180     name: Publish Results
181     runs-on: ubuntu-latest
182     needs: [benchmarks]
183     steps:
184       - id: checkout
185         name: Clone Git Repository
186         uses: actions/checkout@v2
187         if: needs.prepare.outputs.commit_count > 0
188       - id: download
189         name: Download Benchmarks Results
190         uses: actions/download-artifact@v2
191         if: needs.prepare.outputs.commit_count > 0
192       - id: copy-codegen-results
193         name: Copy Codegen Results
194         run: cp ./benchmark-codegen/yosql-benchmarks-codegen.json ./yosql-website/content/benchmarks/releases/yosql-benchmarks-codegen-${{ needs.prepare.outputs.release_version }}.json
195         if: needs.prepare.outputs.commit_count > 0
196       - id: copy-jdbc-results
197         name: Copy JDBC Results
198         run: cp ./benchmark-jdbc/yosql-benchmarks-jdbc.json ./yosql-website/content/benchmarks/releases/yosql-benchmarks-jdbc-${{ needs.prepare.outputs.release_version }}.json
199         if: needs.prepare.outputs.commit_count > 0
200       - id: push
201         name: Push Benchmarks
202         uses: stefanzweifel/git-auto-commit-action@v4
203         if: needs.prepare.outputs.commit_count > 0
204         with:
205           commit_message: Add benchmark results for ${{ needs.prepare.outputs.release_version }}
206           file_pattern: "*.json"
207   announce:
208     name: Send Announcements
209     needs: [deploy]
210     runs-on: ubuntu-latest
211     steps:
212       - id: email
213         name: Send Mail
214         uses: dawidd6/action-send-mail@v2
215         if: needs.prepare.outputs.commit_count > 0
216         with:
217           server_address: ${{ secrets.MAIL_SERVER }}
218           server_port: ${{ secrets.MAIL_PORT }}
219           username: ${{ secrets.MAIL_USERNAME }}
220           password: ${{ secrets.MAIL_PASSWORD }}
221           to: ${{ secrets.MAIL_TO }}
222           from: ${{ secrets.MAIL_SENDER }}
223           subject: release ${{ needs.prepare.outputs.release_version }}
224           body: See https://github.com/metio/yosql/releases/tag/${{ needs.prepare.outputs.release_version }} for details.
225       - id: matrix
226         name: Send Matrix Message
227         uses: s3krit/matrix-message-action@v0.0.3
228         if: needs.prepare.outputs.commit_count > 0
229         with:
230           access_token: ${{ secrets.MATRIX_ACCESS_TOKEN }}
231           room_id: ${{ secrets.MATRIX_ROOM_ID }}
232           server: ${{ secrets.MATRIX_SERVER }}
233           message: release ${{ needs.prepare.outputs.release_version }} published - see https://github.com/metio/yosql/releases/tag/${{ needs.prepare.outputs.release_version }} for details