summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStephane Peter <megastep@megastep.org>2020-03-05 03:45:00 -0800
committerStephane Peter <megastep@megastep.org>2020-03-05 03:45:00 -0800
commit27a3349e714e73edf1309cbc03f17918b5cdd242 (patch)
tree4875f15912180e557aa2c6e7b7e1c8115e28f569
parentcfffca869503c9b04fd845353c44430ed2a7a361 (diff)
downloadmakeself-27a3349e714e73edf1309cbc03f17918b5cdd242.tar.gz
Adding release workflow, upping version for testing
-rw-r--r--.github/workflows/build.yml2
-rw-r--r--.github/workflows/release.yml28
-rw-r--r--VERSION2
3 files changed, 30 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 8d91ced..f642229 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -1,6 +1,6 @@
name: CI
-on: [push]
+on: [push, pull_request]
jobs:
test:
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
new file mode 100644
index 0000000..dfc132a
--- /dev/null
+++ b/.github/workflows/release.yml
@@ -0,0 +1,28 @@
+name: Release
+
+on:
+ release:
+ types: [created, published]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - name: Install Linux packages
+ run: sudo env DEBIAN_FRONTEND=noninteractive apt-get -qq -y install pbzip2
+
+ - name: Checkout Makeself
+ uses: actions/checkout@v2
+
+ - name: Build release
+ run: |
+ git submodule update --init --recursive
+ make
+
+ - name: Upload to release
+ uses: JasonEtco/upload-to-release@master
+ with:
+ args: makeself-*.run
+ env:
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file
diff --git a/VERSION b/VERSION
index 197c4d5..005119b 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-2.4.0
+2.4.1