From 821646f7710455183d12b85910e6ae23ee80a84d Mon Sep 17 00:00:00 2001 From: KatsutoshiOtogawa Date: Tue, 10 Oct 2023 09:00:58 +0900 Subject: [PATCH] update --- .github/workflows/go.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/go.yml b/.github/workflows/go.yml index 3cd24d7..52b7e94 100644 --- a/.github/workflows/go.yml +++ b/.github/workflows/go.yml @@ -41,6 +41,13 @@ jobs: path: | out/libmiyuu_ssh_core.h out/libmiyuu_ssh_core.so + - name: Release + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: | + out/libmiyuu_ssh_core.h + out/libmiyuu_ssh_core.so build_macos: runs-on: macos-11 @@ -72,3 +79,11 @@ jobs: path: | out/libmiyuu_ssh_core.h out/libmiyuu_ssh_core.dylib + + - name: Release + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: | + out/libmiyuu_ssh_core.h + out/libmiyuu_ssh_core.dylib