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

[ Refactor ] : 깃허브 액션 수정 #275

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
20 changes: 11 additions & 9 deletions .github/workflows/attandace-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,6 @@ jobs:
needs: commit-message
runs-on: ubuntu-latest
steps:
- name: Install fastlane
run: gem install fastlane --user-install

- name: Install bundle
run: gem install bundler --user-install

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

- name: Make env file
run: |
# fastlane 디렉토리 추가
Expand All @@ -102,6 +93,17 @@ jobs:

# fastlane evn 파일 만듦
echo FASTLANE_ENV=\"$FASTLANE_ENV\" >> ./fastlane/.env

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

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

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

- name: Set Gem environment variables
run: |
Expand Down