Skip to content
This repository has been archived by the owner on Dec 23, 2021. It is now read-only.

Commit

Permalink
Edit workflows for GitHub Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
pchmelar committed Jan 25, 2021
1 parent 9e130ef commit a3fad91
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
clean: false
- name: Pull Twine repo
run: git -C $TWINE_FOLDER pull origin master
- name: Install Gems and Pods
- name: Setup tools
run: ./scripts/setup.sh
- name: Generate version and build numbers
run: |
Expand All @@ -29,17 +29,17 @@ jobs:
env:
MATCH_PASSWORD: ${{ secrets.FASTLANE_MATCH_PASSWORD }}
APP_STORE_CONNECT_API_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_MATEE }}
run: bundle exec fastlane build_alpha
run: fastlane build_alpha
# - name: Create a new Beta build
# env:
# MATCH_PASSWORD: ${{ secrets.FASTLANE_MATCH_PASSWORD }}
# APP_STORE_CONNECT_API_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_MATEE }}
# run: bundle exec fastlane build_beta
# run: fastlane build_beta
# - name: Create a new Production build
# env:
# MATCH_PASSWORD: ${{ secrets.FASTLANE_MATCH_PASSWORD }}
# APP_STORE_CONNECT_API_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_MATEE }}
# run: bundle exec fastlane build_production
# run: fastlane build_production
- name: Create and push git tag
run: |
git tag "$VERSION_NUMBER.$BUILD_NUMBER"
Expand All @@ -56,8 +56,8 @@ jobs:
APP_STORE_CONNECT_API_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_MATEE }}
SLACK_URL: ${{ secrets.FASTLANE_SLACK_URL }}
run: |
bundle exec fastlane upload_testflight_alpha
bundle exec fastlane dsym_alpha
fastlane upload_testflight_alpha
fastlane dsym_alpha
# deploy-beta:
# name: Deploy beta
Expand All @@ -70,8 +70,8 @@ jobs:
# APP_STORE_CONNECT_API_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_MATEE }}
# SLACK_URL: ${{ secrets.FASTLANE_SLACK_URL }}
# run: |
# bundle exec fastlane upload_testflight_beta
# bundle exec fastlane dsym_beta
# fastlane upload_testflight_beta
# fastlane dsym_beta

# deploy-production:
# name: Deploy production
Expand All @@ -84,5 +84,5 @@ jobs:
# APP_STORE_CONNECT_API_KEY: ${{ secrets.APP_STORE_CONNECT_API_KEY_MATEE }}
# SLACK_URL: ${{ secrets.FASTLANE_SLACK_URL }}
# run: |
# bundle exec fastlane upload_testflight_production
# bundle exec fastlane dsym_production
# fastlane upload_testflight_production
# fastlane dsym_production
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
clean: false
- name: Pull Twine repo
run: git -C $TWINE_FOLDER pull origin master
- name: Install Gems and Pods
- name: Setup tools
run: ./scripts/setup.sh
- name: Run tests
run: bundle exec fastlane test_alpha
run: fastlane test_alpha

0 comments on commit a3fad91

Please sign in to comment.