From b808e895c472844441038793eb929190c2769ecf Mon Sep 17 00:00:00 2001 From: Sebastian Villena <97059974+ruisebas@users.noreply.github.com> Date: Wed, 24 Apr 2024 11:33:23 -0400 Subject: [PATCH] for testing --- .github/workflows/release_authenticator.yml | 14 +++++++------- fastlane/Fastfile | 8 ++++---- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/.github/workflows/release_authenticator.yml b/.github/workflows/release_authenticator.yml index b845534..c51b3d8 100644 --- a/.github/workflows/release_authenticator.yml +++ b/.github/workflows/release_authenticator.yml @@ -1,23 +1,23 @@ name: Release Authenticator on: push: - branches: [ release ] + branches: [ dev ] permissions: id-token: write contents: write jobs: - unit-tests: - name: Run Unit Tests - uses: ./.github/workflows/unit_tests.yml - with: - identifier: 'workflow-call-unit-test' + # unit-tests: + # name: Run Unit Tests + # uses: ./.github/workflows/unit_tests.yml + # with: + # identifier: 'workflow-call-unit-test' release: environment: Release name: Release new Authenticator version - needs: [unit-tests] + #needs: [unit-tests] runs-on: macos-latest env: GITHUB_EMAIL: aws-amplify-ops@amazon.com diff --git a/fastlane/Fastfile b/fastlane/Fastfile index 8130dfc..2d37bd9 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -49,8 +49,8 @@ platform :swift do sh('git', 'commit', '-am', commit_message) # push to origin - sh('git', 'push', 'origin', 'release') - sh('git', 'push', 'origin', 'release:main') + sh('git', 'push', 'origin', 'dev') + #sh('git', 'push', 'origin', 'release:main') end desc "Tag in git and push to GitHub" @@ -58,7 +58,7 @@ platform :swift do next_version = options[:version] next_tag = "#{next_version}" - add_git_tag(tag: next_tag) - push_git_tags(tag: next_tag) + #add_git_tag(tag: next_tag) + #push_git_tags(tag: next_tag) end end