mirror of
https://gitea.com/bipinkrish/DeGourou.git
synced 2024-11-17 07:30:22 +00:00
Bug Fix
This commit is contained in:
parent
6b14670709
commit
e3b5f8fbe8
1 changed files with 19 additions and 17 deletions
36
.github/workflows/release.yml
vendored
36
.github/workflows/release.yml
vendored
|
@ -1,3 +1,5 @@
|
|||
name: Release
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
|
@ -8,25 +10,25 @@ steps:
|
|||
run: ls -R
|
||||
|
||||
- name: release
|
||||
uses: actions/create-release@v1
|
||||
id: create_release
|
||||
with:
|
||||
draft: false
|
||||
prerelease: false
|
||||
release_name: Latest Release
|
||||
tag_name: ${{ github.ref }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
uses: actions/create-release@v1
|
||||
id: create_release
|
||||
with:
|
||||
draft: false
|
||||
prerelease: false
|
||||
release_name: Latest Release
|
||||
tag_name: ${{ github.ref }}
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
|
||||
- name: upload linux artifact
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: .*.bin
|
||||
asset_name: DeGourou
|
||||
asset_content_type: application/gzip
|
||||
uses: actions/upload-release-asset@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ github.token }}
|
||||
with:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
asset_path: .*.bin
|
||||
asset_name: DeGourou
|
||||
asset_content_type: application/gzip
|
||||
|
||||
# - name: upload darwin artifact
|
||||
# uses: actions/upload-release-asset@v1
|
||||
|
|
Loading…
Reference in a new issue