File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change 64
64
- name : Run lein release
65
65
run : |
66
66
CLOJARS_USERNAME=${{ secrets.CLOJARS_USERNAME }} CLOJARS_TOKEN=${{ secrets.CLOJARS_TOKEN }} GITHUB_USERNAME=${{ github.actor }} GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }} lein release
67
+ # This creates a 'GitHub Release' from the tag and includes link to the CHANGELOG
68
+ # at that point in the Git history. We do not use draft or prerelease features as
69
+ # we always want the latest release to show in the right hand column of the project
70
+ # page regardless of if it is a stable release.
71
+ - name : Create GitHub Release
72
+ uses : actions/create-release@v1
73
+ env :
74
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
75
+ with :
76
+ tag_name : ${{ github.ref }}
77
+ release_name : ${{ github.ref }}
78
+ body : |
79
+ [Changelog](https://github.com/day8/re-frame-http-fx/blob/${{ github.ref }}/CHANGELOG.md)
80
+ draft : false
81
+ prerelease : false
67
82
- name : Slack notification
68
83
uses : homoluctus/slatify@v2.0.1
69
84
if : always()
You can’t perform that action at this time.
0 commit comments