Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[ Feature ] : 패스트 래인 변경 #295

Merged
merged 1 commit into from
Jul 18, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 6 additions & 18 deletions .github/workflows/attandace-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,29 +97,17 @@ jobs:
- name: Set up Ruby
uses: ruby/setup-ruby@v1
with:
ruby-version: "3.2"

- name: Install fastlane and bundler
run: |
gem install fastlane
gem install bundler
# working-directory: .
ruby-version: "2.6"

- name: Run bundle install
run: bundle install
# working-directory: ./fastlane

- name: Set up Ruby and allow Gemfile modifications
run: |
bundle config --local path vendor/bundle
bundle config --local bin vendor/bundle/bin

- name: Install Firebase app distribution plugin
run: fastlane add_plugin firebase_app_distribution
bundle config path vendor/bundle
bundle install --jobs 4 --retry 3
# working-directory: ./fastlane


- name: Fastlane debug
run: fastlane distribute_debug "message:${{ needs.commit_message.outputs.message }}" --env common --non-interactive
run: bundle exec fastlane distribute_debug "message:${{ needs.commit_message.outputs.message }}"
env:
FASTLANE_OPT_OUT_USAGE: true
FIREBASE_APP_ID_DEBUG: ${{ secrets.FIREBASE_APP_ID }}
# working-directory: ./fastlane
Loading