Skip to content

Commit

Permalink
Add release build scripts for filepicker module
Browse files Browse the repository at this point in the history
  • Loading branch information
tuancoltech committed Feb 27, 2024
1 parent 8ad3b5f commit a1e9da3
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/release_filepicker.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Release the components

on:
push:
tags:
- 'filepicker*'

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

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

- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v1.0.5

- name: Publish components to Github
uses: gradle/gradle-build-action@v2
with:
arguments: filepicker:publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit a1e9da3

Please sign in to comment.