From 80787502c3960ffdefb0236382c06ed1f3fddbf9 Mon Sep 17 00:00:00 2001 From: Maxwell Talbot Date: Tue, 1 Jun 2021 11:52:38 +0100 Subject: [PATCH 1/2] adding tagging --- .github/workflows/build_frameworks.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/build_frameworks.yml b/.github/workflows/build_frameworks.yml index ed716851..6aa61f83 100644 --- a/.github/workflows/build_frameworks.yml +++ b/.github/workflows/build_frameworks.yml @@ -94,6 +94,8 @@ jobs: git add . git commit -m "Update podspec repo tag:${{ github.event.release.tag_name }}" git push + git tag ${{ github.event.release.tag_name }} + git push origin ${{ github.event.release.tag_name }} env: API_TOKEN_GITHUB: ${{ secrets.RIVE_REPO_PAT }} - name: Publish pod to the CocoaPods From 519a3e7531fa1b5e2fc2da91e4cd1a77645901f7 Mon Sep 17 00:00:00 2001 From: Maxwell Talbot Date: Tue, 1 Jun 2021 12:09:27 +0100 Subject: [PATCH 2/2] adding the v for version --- .github/workflows/build_frameworks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build_frameworks.yml b/.github/workflows/build_frameworks.yml index 6aa61f83..57189f3a 100644 --- a/.github/workflows/build_frameworks.yml +++ b/.github/workflows/build_frameworks.yml @@ -94,8 +94,8 @@ jobs: git add . git commit -m "Update podspec repo tag:${{ github.event.release.tag_name }}" git push - git tag ${{ github.event.release.tag_name }} - git push origin ${{ github.event.release.tag_name }} + git tag v${{ github.event.release.tag_name }} + git push origin v${{ github.event.release.tag_name }} env: API_TOKEN_GITHUB: ${{ secrets.RIVE_REPO_PAT }} - name: Publish pod to the CocoaPods