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