Try different action to upload release

This commit is contained in:
Stephane Peter
2020-03-05 16:10:22 -08:00
parent 68489ab409
commit 54b368e6ad
3 changed files with 5 additions and 5 deletions

View File

@@ -19,8 +19,7 @@ jobs:
make
- name: Upload to release
uses: JasonEtco/upload-to-release@master
with:
args: makeself-*.run
uses: fnkr/github-action-ghr@v1
env:
GHR_PATH: release/
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

1
.gitignore vendored
View File

@@ -1,3 +1,4 @@
_site
*.run
.*-cache/
release/

View File

@@ -3,7 +3,7 @@
# Create a distributable archive of the current version of Makeself
VER=`cat VERSION`
mkdir /tmp/makeself-$VER
mkdir -p /tmp/makeself-$VER release
cp -a makeself* test README.md COPYING VERSION .gitmodules /tmp/makeself-$VER/
./makeself.sh --notemp /tmp/makeself-$VER makeself-$VER.run "Makeself v$VER" echo "Makeself has extracted itself"
./makeself.sh --notemp /tmp/makeself-$VER release/makeself-$VER.run "Makeself v$VER" echo "Makeself has extracted itself"