Skip to content

Commit

Permalink
modify gradle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
touchmii committed Oct 25, 2020
1 parent ff54b81 commit e2dcf4b
Showing 1 changed file with 33 additions and 7 deletions.
40 changes: 33 additions & 7 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,17 @@

name: Java CI with Gradle

#on:
# push:
# branches: [ master ]
# pull_request:
# branches: [ master ]
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
# Sequence of patterns matched against refs/tags
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10


jobs:
build:
Expand All @@ -24,7 +30,27 @@ jobs:
run: chmod +x gradlew
- name: Build with Gradle
run: ./gradlew release
- uses: actions/upload-artifact@v2
with:
name: openTCS-4.18.0-SNAPSHOT-bin
path: build/distributions/openTCS-4.18.0-SNAPSHOT-bin.zip
# - uses: actions/upload-artifact@v2
# with:
# name: openTCS-4.18.0-SNAPSHOT-bin
# path: build/distributions/openTCS-4.18.0-SNAPSHOT-bin.zip
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
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: ./build/distributions/openTCS-4.18.0-SNAPSHOT-bin.zip
asset_name: openTCS-4.18.0-SNAPSHOT-bin.zip
asset_content_type: application/zip

0 comments on commit e2dcf4b

Please sign in to comment.