Skip to content

Commit

Permalink
add release action in ci
Browse files Browse the repository at this point in the history
  • Loading branch information
justjavac committed Aug 24, 2020
1 parent 07a18e4 commit bd52dbd
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/ci.yml
Expand Up @@ -25,3 +25,14 @@ jobs:

- name: Tests
run: deno test --unstable

- name: Release
uses: softprops/action-gh-release@v1
if: |
matrix.os == 'ubuntu-latest' &&
startsWith(github.repository, 'justjavac') &&
startsWith(github.ref, 'refs/tags/')
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
draft: true

0 comments on commit bd52dbd

Please sign in to comment.