-
Notifications
You must be signed in to change notification settings - Fork 540
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #206 from ekangmonyet/master
Cleanup redundant workflow step, fix release body and timestamp
- Loading branch information
Showing
1 changed file
with
6 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,16 +18,14 @@ jobs: | |
make all | ||
make html | ||
tar zcvf lkmpg-html.tar.gz ./html | ||
- name: Delete old release asset | ||
uses: mknejp/delete-release-assets@v1 | ||
- name: Delete old release | ||
uses: cb80/delrel@latest | ||
with: | ||
token: ${{ github.token }} | ||
fail-if-no-assets: false | ||
fail-if-no-release: false | ||
tag: latest | ||
assets: | | ||
lkmpg.pdf | ||
lkmpg-html.tar.gz | ||
- name: Tag | ||
run: | | ||
git tag latest | ||
git push -f --tags | ||
- name: Release | ||
uses: softprops/[email protected] | ||
with: | ||
|