We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e07c59f commit 179de0dCopy full SHA for 179de0d
.github/workflows/continuous-deployment-workflow.yml
@@ -90,6 +90,17 @@ jobs:
90
if: steps.maven-cache.outputs.cache-hit == 'true'
91
run: |
92
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
104
- name: Slack notification
105
uses: homoluctus/slatify@v2.0.1
106
if: always()
0 commit comments