-
Notifications
You must be signed in to change notification settings - Fork 2
48 lines (39 loc) · 1.71 KB
/
flow-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
name: Flow library release
on:
workflow_dispatch:
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- name: Check out code
uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Check out java
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
- name: Copy CI gradle.properties
run: mkdir -p ~/.gradle ; cp .github/ci-gradle.properties ~/.gradle/gradle.properties
- name: Setup Gradle
uses: gradle/gradle-build-action@v3
- name: Run Checks
run: ./gradlew :toggles-flow:check
- name: Setup environment
if: github.repository == 'erikeelde/toggles'
run: |
echo "signing.keyId=${{secrets.SIGNING_KEYID}}" >> gradle.properties
echo "signing.password=${{secrets.SIGNING_PASSWORD}}" >> gradle.properties
echo "signing.secretKeyRingFile=../secring.gpg" >> gradle.properties
echo "mavenCentralRepositoryUsername=${{secrets.MAVEN_CENTRAL_REPOSITORY_USERNAME}}" >> gradle.properties
echo "mavenCentralRepositoryPassword=${{secrets.MAVEN_CENTRAL_REPOSITORY_PASSWORD}}" >> gradle.properties
echo "${{secrets.SECRING_GPG_B64}}" > secring.gpg.b64
base64 -d secring.gpg.b64 > secring.gpg
- name: Publish flow library
if: github.repository == 'erikeelde/toggles'
run: ./gradlew :toggles-flow:publish --no-daemon --no-parallel