File tree Expand file tree Collapse file tree 4 files changed +34
-0
lines changed Expand file tree Collapse file tree 4 files changed +34
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Releases
2+ on :
3+ push :
4+ branches :
5+ - main
6+
7+ jobs :
8+ changelog :
9+ runs-on : ubuntu-latest
10+
11+ steps :
12+ - uses : actions/checkout@v2
13+
14+ - name : conventional Changelog Action
15+ id : changelog
16+ 17+ with :
18+ github-token : ${{ secrets.PA_TOKEN }}
19+ version-file : ' ./releases.json'
20+
21+ - name : create release
22+ uses : actions/create-release@v1
23+ if : ${{ steps.changelog.outputs.skipped == 'false' }}
24+ env :
25+ GITHUB_TOKEN : ${{ secrets.PA_TOKEN }}
26+ with :
27+ tag_name : ${{ steps.changelog.outputs.tag }}
28+ release_name : ${{ steps.changelog.outputs.tag }}
29+ body : ${{ steps.changelog.outputs.clean_changelog }}
Original file line number Diff line number Diff line change 1+ FROM alpine:3.17.2
2+ CMD ["echo" , "Hello World!" ]
Original file line number Diff line number Diff line change 1+ {
2+ "version" : " 1.0.0"
3+ }
You can’t perform that action at this time.
0 commit comments