Skip to content

Commit 54b368e

Browse files
committed
Try different action to upload release
1 parent 68489ab commit 54b368e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

.github/workflows/new-release.yml renamed to .github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,7 @@ jobs:
1919
make
2020
2121
- name: Upload to release
22-
uses: JasonEtco/upload-to-release@master
23-
with:
24-
args: makeself-*.run
22+
uses: fnkr/github-action-ghr@v1
2523
env:
24+
GHR_PATH: release/
2625
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
_site
22
*.run
33
.*-cache/
4+
release/

make-release.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Create a distributable archive of the current version of Makeself
44

55
VER=`cat VERSION`
6-
mkdir /tmp/makeself-$VER
6+
mkdir -p /tmp/makeself-$VER release
77
cp -a makeself* test README.md COPYING VERSION .gitmodules /tmp/makeself-$VER/
8-
./makeself.sh --notemp /tmp/makeself-$VER makeself-$VER.run "Makeself v$VER" echo "Makeself has extracted itself"
8+
./makeself.sh --notemp /tmp/makeself-$VER release/makeself-$VER.run "Makeself v$VER" echo "Makeself has extracted itself"
99

0 commit comments

Comments
 (0)