From 832bd6bdc15a4751f9ef998f04bca7c8e92b5e6f Mon Sep 17 00:00:00 2001 From: Violet Caulfield Date: Wed, 5 Feb 2025 22:00:54 -0600 Subject: [PATCH] create release --- .github/workflows/publish-ios-beta.yml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish-ios-beta.yml b/.github/workflows/publish-ios-beta.yml index 2e46e3c9..9c9a7d0d 100644 --- a/.github/workflows/publish-ios-beta.yml +++ b/.github/workflows/publish-ios-beta.yml @@ -37,4 +37,13 @@ jobs: - uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: "[skip actions]" - file_pattern: "ios/Jellify.xcodeproj/project.pbxproj" \ No newline at end of file + file_pattern: "ios/Jellify.xcodeproj/project.pbxproj" + + - name: 🎉 Create Github release + uses: ncipollo/release-action@v1 + with: + artifacts: "Jellify.ipa" + name: "Jellify - ${{ env.VERSION_NUMBER }}" + prerelease: true + tag: ${{ env.VERSION_NUMBER }} + token: ${{ secrets.GITHUB_TOKEN }}