Skip to content

Commit

Permalink
Update makefile.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
huahua132 authored Sep 28, 2024
1 parent e2f1c59 commit e8f698b
Showing 1 changed file with 15 additions and 1 deletion.
16 changes: 15 additions & 1 deletion .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,18 @@ jobs:
- uses: actions/checkout@master

- name: install
run: sh install_ubuntu.sh
run:
sh install_ubuntu.sh
sh binshell/make_release.sh
tar -czvf mymodule-v${{ github.ref_name }}.tar.gz skynet-fly-release

release:
runs-on: ubuntu-latest
needs: [build]
steps:
- name: Create GitHub Release
uses: softprops/action-gh-release@master
with:
files: mymodule-v${{ github.ref_name }}.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit e8f698b

Please sign in to comment.