Commit publish workflow
Test Workflow / Lint and test library (pull_request) Successful in 8m31s Details
Publish Workflow / Publish library (pull_request) Successful in 8m34s Details

This commit is contained in:
Gleb Koval 2023-12-02 00:18:21 +00:00
parent da23105fe3
commit c9a19c929d
Signed by: cyclane
GPG Key ID: 15E168A8B332382C
1 changed files with 36 additions and 0 deletions

36
.github/workflows/publish.yaml vendored Normal file
View File

@ -0,0 +1,36 @@
name: Publish Workflow
on:
pull_request: # testing for now
branches:
- main
push:
tags:
- v*
jobs:
publish:
name: Publish library
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Java
uses: actions/setup-java@v3
with:
distribution: adopt
java-version: 17
- name: Verify Gradle wrapper
uses: gradle/wrapper-validation-action@v1
- name: Setup Gradle
uses: gradle/gradle-build-action@v2
- name: Run checks
run: ./gradlew check
- name: Publish to Gitea package repository
env:
TINYVM_VERSION: "0.0.0" # testing for now
GITEA_USERNAME: ${{ github.repository_owner }}
GITEA_TOKEN: ${{ secrets.deploy_token }}
run: ./gradlew publishAllPublicationsToGiteaRepository