aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLi Jin <dragon-fly@qq.com>2022-11-16 10:56:35 +0800
committerGitHub <noreply@github.com>2022-11-16 10:56:35 +0800
commit5ff5a1928cdc9e713533bbe388b81ab98e4df137 (patch)
tree8caaccf40f89632287b7da2b20ff31955be29379
parentcfe8c31260fe2fabba1a3ce77adb6a85fc1fae47 (diff)
downloadyuescript-5ff5a1928cdc9e713533bbe388b81ab98e4df137.tar.gz
yuescript-5ff5a1928cdc9e713533bbe388b81ab98e4df137.tar.bz2
yuescript-5ff5a1928cdc9e713533bbe388b81ab98e4df137.zip
Update ubuntu.yml
-rw-r--r--.github/workflows/ubuntu.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.github/workflows/ubuntu.yml b/.github/workflows/ubuntu.yml
index af2ef3f..525475e 100644
--- a/.github/workflows/ubuntu.yml
+++ b/.github/workflows/ubuntu.yml
@@ -18,7 +18,10 @@ jobs:
18 run: make test 18 run: make test
19 - name: pack 19 - name: pack
20 if: startsWith(github.ref, 'refs/tags/') 20 if: startsWith(github.ref, 'refs/tags/')
21 run: (cd bin/release && zip -r ../../yue-linux-x86_64.zip ./yue) 21 run: |
22 make clean
23 make release
24 (cd bin/release && zip -r ../../yue-linux-x86_64.zip ./yue)
22 - name: release 25 - name: release
23 uses: softprops/action-gh-release@v1 26 uses: softprops/action-gh-release@v1
24 if: startsWith(github.ref, 'refs/tags/') 27 if: startsWith(github.ref, 'refs/tags/')