Skip to content

Commit

Permalink
for testing
Browse files Browse the repository at this point in the history
  • Loading branch information
ruisebas committed Apr 24, 2024
1 parent b0d248b commit b808e89
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/release_authenticator.yml
Original file line number Diff line number Diff line change
@@ -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: [email protected]
Expand Down
8 changes: 4 additions & 4 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,16 @@ 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"
private_lane :add_tag do |options|
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

0 comments on commit b808e89

Please sign in to comment.