Remove changelog generator
This commit is contained in:
parent
8cc1e86c47
commit
2af49ae60c
1 changed files with 10 additions and 14 deletions
24
.github/workflows/main.yml
vendored
24
.github/workflows/main.yml
vendored
|
@ -55,30 +55,26 @@ jobs:
|
|||
|
||||
# Arguments to pass on each go tool link invocation
|
||||
#ldflags: # optional
|
||||
- name: Changelog Generator
|
||||
uses: timfallmk/github-changelog-generator-action@0.0.2
|
||||
id: generate_changelog
|
||||
#with:
|
||||
# Changes after this tag are included (default last tag)
|
||||
# since-tag: # optional, default is $(git describe --abbrev=0 --tags `git rev-list --tags --skip=1 --max-count=1`)
|
||||
|
||||
# GitHub token to access the GitHub API (optional)
|
||||
# github-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
#- name: (Gitflow) Changelog Generator
|
||||
# uses: homeday-de/github-action-changelog-generator@v1.0.0
|
||||
# with:
|
||||
# # As provided by Github Actions
|
||||
# token: ${{ secrets.GITHUB_TOKEN }}
|
||||
- name: Create Release
|
||||
uses: actions/create-release@v1.0.0
|
||||
id: create_release
|
||||
#env:
|
||||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
tag_name: ${{ github.ref }}
|
||||
release_name: Release ${{ github.ref }}
|
||||
body: ${{ steps.generate_changelog.outputs.changelog }}
|
||||
#body: ${{ steps.generate_changelog.outputs.changelog }}
|
||||
draft: false
|
||||
prerelease: false
|
||||
- name: xbin - Cross Binary Releaser
|
||||
uses: GlenTiki/xbin-release-action@v1.0.0
|
||||
#env:
|
||||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
assets_path: ./build
|
||||
|
|
Loading…
Reference in a new issue