Skip to content

Commit

Permalink
Add GitHub Release creation to GitHub Actions deployment workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
superstructor committed Jul 6, 2020
1 parent e07c59f commit 179de0d
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/continuous-deployment-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,17 @@ jobs:
if: steps.maven-cache.outputs.cache-hit == 'true'
run: |
CLOJARS_USERNAME=${{ secrets.CLOJARS_USERNAME }} CLOJARS_TOKEN=${{ secrets.CLOJARS_TOKEN }} GITHUB_USERNAME=${{ github.actor }} GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} lein -o release
- name: Create GitHub Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: ${{ github.ref }}
body: |
[Changelog](http://day8.github.io/re-frame/releases/2020/)
draft: false
prerelease: false
- name: Slack notification
uses: homoluctus/[email protected]
if: always()
Expand Down

0 comments on commit 179de0d

Please sign in to comment.