Skip to content

chore: upgraded Java version #53

chore: upgraded Java version

chore: upgraded Java version #53

Workflow file for this run

# Copyright 2020 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: Release
on:
push:
branches: [ ]
workflow_dispatch:
jobs:
release:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4.2.1
with:
java-version: '17'
distribution: 'temurin'
- name: Copy secrets to gradle.properties
run: |
sed -i -e "s,gradle.publish.key=,gradle.publish.key=$GRADLE_PUBLISH_KEY,g" gradle.properties
sed -i -e "s,gradle.publish.secret=,gradle.publish.secret=$GRADLE_PUBLISH_SECRET,g" gradle.properties
env:
GRADLE_PUBLISH_KEY: ${{ secrets.GRADLE_PUB_KEY }}
GRADLE_PUBLISH_SECRET: ${{ secrets.GRADLE_PUB_SEC }}
- name: Set up node
uses: actions/setup-node@v4
with:
node-version: '14'
- name: Install conventionalcommits
run: npm i -D conventional-changelog-conventionalcommits
- name: Semantic Release
uses: cycjimmy/semantic-release-action@v4.1.0
with:
extra_plugins: |
"@semantic-release/commit-analyzer@8.0.1"
"@semantic-release/release-notes-generator@9.0.3"
"@google/semantic-release-replace-plugin@1.2.0"
"@semantic-release/exec@5.0.0"
"@semantic-release/git@9.0.1"
"@semantic-release/github@7.2.3"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}