From 7941d7c66ba071f60e15f8a2dcce47ea56de95cd Mon Sep 17 00:00:00 2001 From: James Sully Date: Thu, 25 Jul 2024 21:35:39 +1000 Subject: [PATCH] update ci to use make_release.sh --- .github/workflows/ci.yml | 7 ++----- create_release.sh | 2 ++ 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f936d67..0c9e981 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,12 +18,9 @@ jobs: build: "true" - name: Create package run: | - mkdir package - cp .lake/build/bin/sand package/ - cp -r systemd package/ - strip package/sand + ./make_release.sh - name: Upload artifact uses: actions/upload-artifact@v4.3.4 with: name: sand - path: package/ + path: release/ diff --git a/create_release.sh b/create_release.sh index 6b2fff0..b6e0728 100755 --- a/create_release.sh +++ b/create_release.sh @@ -13,4 +13,6 @@ cp -f scripts/install.sh release/ cp -f LICENSE release/ cp -f README.md release/ +strip release/sand + echo "Created release in ./release"