This repository has been archived by the owner on Feb 14, 2024. It is now read-only.
Release to Github Package #30
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Release to Github Package | |
on: | |
workflow_dispatch: | |
jobs: | |
release-github-package: | |
runs-on: ubuntu-latest | |
if: contains('["nattb8", "dom-murray"]', github.actor) | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
token: ${{ secrets.PLATFORM_SA_GITHUB_TOKEN }} | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 11 | |
- name: Build | |
run: ./gradlew imx-core-sdk-kotlin-jvm:build | |
- name: Generate changelog and bump up version | |
uses: TriPSs/conventional-changelog-action@v3 | |
with: | |
github-token: "${{ secrets.PLATFORM_SA_GITHUB_TOKEN }}" | |
skip-git-pull: 'true' | |
version-file: './version.yml' | |
version-path: 'version' | |
- name: Publish to GitHub Packages | |
run: ./gradlew publish | |
env: | |
GPR_USER: ${{ github.actor }} | |
GPR_API_KEY: ${{ secrets.PLATFORM_SA_GITHUB_TOKEN }} |