mirror of
https://github.com/Ombi-app/Ombi.git
synced 2025-08-20 13:23:20 -07:00
ci: 🏗️ Actually release it
This commit is contained in:
parent
5e7550cae1
commit
b6c6c2af66
1 changed files with 17 additions and 1 deletions
16
.github/workflows/build.yml
vendored
16
.github/workflows/build.yml
vendored
|
@ -183,6 +183,7 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Conventional Changelog Action
|
- name: Conventional Changelog Action
|
||||||
|
id: changelog
|
||||||
uses: TriPSs/conventional-changelog-action@v3
|
uses: TriPSs/conventional-changelog-action@v3
|
||||||
with:
|
with:
|
||||||
github-token: ${{ secrets.github_token }}
|
github-token: ${{ secrets.github_token }}
|
||||||
|
@ -195,6 +196,21 @@ jobs:
|
||||||
with:
|
with:
|
||||||
path: artifacts
|
path: artifacts
|
||||||
|
|
||||||
|
- name: Publish to GitHub
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
with:
|
||||||
|
body: ${{ steps.changelog.outputs.clean_changelog }}
|
||||||
|
prerelease: 'true'
|
||||||
|
name: ${{ steps.changelog.outputs.tag }}
|
||||||
|
tag_name: ${{ steps.changelog.outputs.tag }}
|
||||||
|
files: |
|
||||||
|
linux-arm.tar.gz
|
||||||
|
linux-arm64.tar.gz
|
||||||
|
linux-x64.tar.gz
|
||||||
|
osx-x64.tar.gz
|
||||||
|
win10-x86.zip
|
||||||
|
win10-x64.zip
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue