Skip to content

Commit

Permalink
add release infra (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
yujinyan authored Apr 16, 2021
1 parent 1fc55b5 commit e82e0e5
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Release

on:
push:
tags:
- 'v*.*.*'

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Build GraalVM Native Image
uses: eskatos/gradle-command-action@v1.3.3
with:
arguments: nativeImage
wrapper-cache-enabled: true
dependencies-cache-enabled: true
configuration-cache-enabled: true
- name: Release
uses: softprops/action-gh-release@v1
with:
files: build/graal/klisp
draft: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e82e0e5

Please sign in to comment.