From 44a62490c2d53778921e9a721d0891a420d0db9a Mon Sep 17 00:00:00 2001 From: Alex Fu Date: Sun, 21 Apr 2024 10:58:31 -0400 Subject: [PATCH] add release workflow --- .github/workflows/release.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..cb75b4d --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,19 @@ +name: Release + +on: + push: + tags: + - "*" + +jobs: + create_release: + runs-on: macOS-latest + steps: + - uses: actions/checkout@v4 + - name: Carthage archive + run: ./scripts/carthage-archive.sh + - name: Create GitHub release + uses: softprops/action-gh-release@v1 + with: + tag_name: RxCombine ${{ github.ref_name }} + files: RxCombine.framework.zip