Skip to content

Commit

Permalink
[ Refactor ] : setup ruby 구문 추가
Browse files Browse the repository at this point in the history
  • Loading branch information
TaeseongYun committed Jul 18, 2023
1 parent 139516d commit 3c9b345
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions .github/workflows/attandace-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,25 +93,22 @@ jobs:
# fastlane evn 파일 만듦
echo FASTLANE_ENV=\"$FASTLANE_ENV\" >> ./fastlane/.env
- name: set-up-ruby
- uses: actions/setup-ruby@v1
with:
ruby-version: "2.6"

- name: Install fastlane
run: gem install fastlane --user-install
run: gem install fastlane
working-directory: ./fastlane

- name: Install bundle
run: gem install bundler --user-install
run: gem install bundler
working-directory: ./fastlane

- name: Add gem binary directory to PATH
run: echo "export PATH=$HOME/.gem/bin:$PATH" >> $GITHUB_ENV

- name: Set Gem environment variables
run: |
export GEM_HOME="$HOME/.gem"
export PATH="$GEM_HOME/bin:$PATH"
- name: Run bundle install
run: bundle install --user-install
run: bundle install
working-directory: ./fastlane

- name: Install Firebase app distribution plugin
Expand Down

0 comments on commit 3c9b345

Please sign in to comment.