Skip to content

Commit 179de0d

Browse files
committed
Add GitHub Release creation to GitHub Actions deployment workflow
1 parent e07c59f commit 179de0d

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/continuous-deployment-workflow.yml

+11
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,17 @@ jobs:
9090
if: steps.maven-cache.outputs.cache-hit == 'true'
9191
run: |
9292
CLOJARS_USERNAME=${{ secrets.CLOJARS_USERNAME }} CLOJARS_TOKEN=${{ secrets.CLOJARS_TOKEN }} GITHUB_USERNAME=${{ github.actor }} GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} lein -o release
93+
- name: Create GitHub Release
94+
uses: actions/create-release@v1
95+
env:
96+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
97+
with:
98+
tag_name: ${{ github.ref }}
99+
release_name: ${{ github.ref }}
100+
body: |
101+
[Changelog](http://day8.github.io/re-frame/releases/2020/)
102+
draft: false
103+
prerelease: false
93104
- name: Slack notification
94105
uses: homoluctus/[email protected]
95106
if: always()

0 commit comments

Comments
 (0)