This commit is contained in:
bipinkrish 2023-02-23 14:04:14 +05:30
parent 6b14670709
commit e3b5f8fbe8

View file

@ -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