Skip to content

Commit

Permalink
Setup Actions CI
Browse files Browse the repository at this point in the history
  • Loading branch information
kawamuray committed Oct 19, 2020
1 parent a67569c commit 00f8066
Showing 1 changed file with 43 additions and 0 deletions.
43 changes: 43 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
name: CI
on:
push:
branches: [ master ]
tags:
- '*'
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 1.8
uses: actions/setup-java@v1
with:
java-version: 1.8
- name: Build with Gradle
run: ./gradlew build executableZip
- name: Create release
if: startsWith(github.ref, 'refs/tags/')
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
- id: get-tag-version
if: startsWith(github.ref, 'refs/tags/')
run: |
version=$(echo ${{github.ref}} | cut -f3 -d/ | sed 's/^v//')
echo "::set-output name=version::$version"
- name: Upload release asset
if: startsWith(github.ref, 'refs/tags/')
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: build/distributions/kmql-bin-${{ steps.get-tag-version.outputs.version }}.zip
asset_name: kmql-bin-${{ steps.get-tag-version.outputs.version }}.zip
asset_content_type: application/zip

0 comments on commit 00f8066

Please sign in to comment.