aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Harrison <adamdharrison@gmail.com>2022-12-31 15:36:15 -0500
committerAdam Harrison <adamdharrison@gmail.com>2022-12-31 15:36:15 -0500
commit3306b89601d3e55238db1f6bc1c8389e6542c17f (patch)
treecc104d2aa3f1c642631cd87cc187dcd6d7b1d601
parent99b0820119ee80b5499dd8b4a38ed5131c45fd80 (diff)
downloadlite-xl-plugin-manager-3306b89601d3e55238db1f6bc1c8389e6542c17f.tar.gz
lite-xl-plugin-manager-3306b89601d3e55238db1f6bc1c8389e6542c17f.zip
Adding to release.
-rw-r--r--.github/workflows/build.yml5
1 files changed, 3 insertions, 2 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 5133d91..02b35c6 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -14,7 +14,7 @@ jobs:
run: git submodule update --init --depth=1
- name: Build Linux
run: |
- SSL_CONFIGURE="no-tests" ./build.sh -DLPM_STATIC -DLPM_VERSION='"'$VERSION-x86_64-linux-`git rev-parse --short HEAD`'"' && tar -czvf lpm-$VERSION-x86_64-linux.tar.gz lpm
+ ./build.sh -DLPM_STATIC -DLPM_VERSION='"'$VERSION-x86_64-linux-`git rev-parse --short HEAD`'"' && tar -czvf lpm-$VERSION-x86_64-linux.tar.gz lpm
cp lpm lpm.x86_64-linux
cp lpm /tmp/lpm
- name: Package Debian/Ubuntu
@@ -55,8 +55,9 @@ jobs:
run: git submodule update --init --depth=1
- name: Build MacOS
run: |
- SSL_CONFIGURE="no-tests" ./build.sh -DLPM_STATIC -DLPM_VERSION='"'$VERSION-x86_64-darwin-`git rev-parse --short HEAD`'"' && tar -czvf lpm-$VERSION-x86_64-darwin.tar.gz lpm
+ ./build.sh -DLPM_STATIC -DLPM_VERSION='"'$VERSION-x86_64-darwin-`git rev-parse --short HEAD`'"' && tar -czvf lpm-$VERSION-x86_64-darwin.tar.gz lpm
cp lpm lpm.x86_64-darwin
+ gh release upload continuous lpm.x86_64-darwin
if [[ `git tag --points-at HEAD | head -c 4` == "v"* ]]; then
export RELEASE=`git tag --points-at HEAD | head -c 4 | sed 's/^v//'`
gh release upload v$RELEASE lpm.x86_64-darwin