Skip to content

Commit

Permalink
chore: Deploy release
Browse files Browse the repository at this point in the history
  • Loading branch information
tallnato committed Aug 26, 2024
1 parent 3d0250c commit 62b7415
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Release

on:
release:
types:
- released

jobs:
deploy:
name: Deploy library
runs-on:
- ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'

- name: Setup Gradle
uses: gradle/actions/setup-gradle@v4

- name: Upload Github
env:
RELEASE_NAME: ${{ github.event.release.name }}
DEPLOY_KEY: ${{ secrets.DEPLOY_KEY }}
run: ./gradlew kmvi:publishAllPublicationsToGitHubPackagesRepository

0 comments on commit 62b7415

Please sign in to comment.