mirror of
https://github.com/house-of-vanity/khm.git
synced 2025-07-06 23:04:07 +00:00
Update main.yml
This commit is contained in:
committed by
GitHub
parent
f51b17ff24
commit
b5560943ee
11
.github/workflows/main.yml
vendored
11
.github/workflows/main.yml
vendored
@ -50,7 +50,6 @@ jobs:
|
||||
|
||||
publish:
|
||||
needs: build
|
||||
name: Create Release
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout code
|
||||
@ -58,6 +57,8 @@ jobs:
|
||||
|
||||
- name: Download build artifacts
|
||||
uses: actions/download-artifact@v2
|
||||
with:
|
||||
name: khm-ubuntu-latest
|
||||
|
||||
- name: Create Release
|
||||
id: create_release
|
||||
@ -71,9 +72,11 @@ jobs:
|
||||
Publishing prebuilt MacOS, Linux and Windows binaries.
|
||||
draft: false
|
||||
prerelease: false
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
- name: Upload Release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
run:
|
||||
gh release upload ${{ github.ref }} khm-*
|
||||
run: |
|
||||
for file in khm-*; do
|
||||
gh release upload ${{ github.ref }} "$file"
|
||||
done
|
||||
|
Reference in New Issue
Block a user