fix: add GITHUB_TOKEN for release it to use to make ios releases (#10098) 214b83c5bf

Co-authored-by: Maxwell Talbot <talbot.maxwell@gmail.com>
This commit is contained in:
mjtalbot
2025-07-02 13:38:34 +00:00
parent 031e82cb25
commit 2205e2e067
2 changed files with 10 additions and 1 deletions

View File

@@ -129,6 +129,9 @@ jobs:
name: Do the actual release
runs-on: ubuntu-latest
needs: [determine_version, build_framework]
permissions:
id-token: write
contents: write # allows release-it to pick up GITHUB_TOKEN
steps:
- name: Checkout
uses: actions/checkout@v3
@@ -201,14 +204,20 @@ jobs:
name: Major Release - Bump version number, update changelog, push and tag
run: npm run release -- major --ci
working-directory: ./.github/release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- if: ${{inputs.major == false && inputs.minor == true}}
name: Minor release - Bump version number, update changelog, push and tag
run: npm run release -- minor --ci
working-directory: ./.github/release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- if: ${{inputs.major == false && inputs.minor == false}}
name: Build release - Bump version number, update changelog, push and tag
run: npm run release -- --ci
working-directory: ./.github/release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
publish_cocoapods:
name: Publish framework to cocoapods

View File

@@ -1 +1 @@
86b484f648d744461521aa5d21eb6f7d4f783952
214b83c5bfcf1e38ba0979daa689c39da5914907