Skip to content

Commit

Permalink
build: 타겟 브랜치 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
iamjooon2 committed May 20, 2024
1 parent f22840d commit 0f4f4a9
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,13 +53,16 @@ jobs:
- name: install dependencies
run: npm install

- name: Set secret as environment variable
run: echo "SECRET_VALUE=my_secret_value" >> $MASKING_SECRET

- name: masking data
run: |
SECRET=$(echo "super_secret_value")
SECRET=secrets.MASKING_SECRET
echo "::add-mask::$SECRET"
- name: publish update
run: eas build -p all --profile local --non-interactive

- name: reflect testflight
run: eas submit -p ios --latest --profile local --non-interactive
run: |
SECRET=secrets.MASKING_SECRET
echo "::add-mask::$SECRET"
eas submit -p ios --latest --profile local --non-interactive

0 comments on commit 0f4f4a9

Please sign in to comment.