Skip to content

chore: update version to 0.1.0-alpha02. #5

chore: update version to 0.1.0-alpha02.

chore: update version to 0.1.0-alpha02. #5

Workflow file for this run

name: Deploy
on:
push:
tags:
- '*'
jobs:
publish:
name: Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout project
uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: ./.github/actions/setup
- name: Publishing gradle plugins
env:
GPG_KEY_ID: ${{ vars.GPG_KEY_ID }}
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
run: >
./gradlew publishPlugins -Pgradle.publish.key=${{ secrets.GRADLE_PUBLISH_KEY }} -Pgradle.publish.secret=${{ secrets.GRADLE_PUBLISH_SECRET }}