From a7e81fd8e58703d49a6bb141a83ab1eb0c14c47b Mon Sep 17 00:00:00 2001 From: Paul Schmiedmayer Date: Thu, 30 May 2024 21:39:47 -0700 Subject: [PATCH] Update Git Add Command for Framework Generation Signed-off-by: Paul Schmiedmayer --- .github/workflows/xcframework-commit-and-release.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/xcframework-commit-and-release.yml b/.github/workflows/xcframework-commit-and-release.yml index acefe99..d40d4b1 100644 --- a/.github/workflows/xcframework-commit-and-release.yml +++ b/.github/workflows/xcframework-commit-and-release.yml @@ -61,10 +61,10 @@ jobs: if: ${{ !inputs.dryrun }} uses: EndBug/add-and-commit@v9 with: - add: '${{ inputs.outputpath }}/*.xcframework' + add: ${{ inputs.outputpath }}/*.xcframework message: Create XCFrameworks for release ${{ inputs.version }} - tag: '${{ inputs.version }} --force' - tag_push: '--force' + tag: ${{ inputs.version }} --force + tag_push: --force github_token: ${{ secrets.access-token || github.token }} author_name: ${{ inputs.user || github.actor }} author_email: ${{ inputs.user || github.actor }}@users.noreply.github.com