diff options
author | Jonas Gunz <himself@jonasgunz.de> | 2020-04-21 13:22:10 +0200 |
---|---|---|
committer | Jonas Gunz <himself@jonasgunz.de> | 2020-04-21 13:22:10 +0200 |
commit | 3d7e158a730ee9994bfa8d4482824cb4dcdc2e2c (patch) | |
tree | 0bb6379a4ecd689775f08a353acc3acc04d110bf | |
parent | 6635c19ab3f60fa963a0daa45aab41559b2494de (diff) | |
parent | e5368f788e736cb097805bf5457d8ae97883eff7 (diff) | |
download | parquet-3d7e158a730ee9994bfa8d4482824cb4dcdc2e2c.tar.gz |
Merge branch 'master' of github.com:kompetenzbolzen/parquetv0.0.2
-rw-r--r-- | .github/workflows/gradle.yml | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index ae42815..ea9c7f4 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -23,8 +23,6 @@ jobs: run: chmod +x gradlew - name: Build with Gradle run: ./gradlew remapJar - - name: Remove intermediary JAR - run: rm build/libs/parquet*-dev.jar - name: Create Release id: create_release uses: actions/create-release@v1 @@ -45,6 +43,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps - asset_path: ./libs/build/parquet-${{ steps.get_version.outputs.VERSION }}.jar + asset_path: ./build/libs/parquet-${{ steps.get_version.outputs.VERSION }}.jar asset_name: parquet-${{ steps.get_version.outputs.VERSION }}.jar asset_content_type: application/jar |