Skip to content

Commit

Permalink
Use env vars instead of secrets when possible
Browse files Browse the repository at this point in the history
  • Loading branch information
karolszafranski committed Dec 23, 2024
1 parent f44a00d commit a7a887f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,22 +11,22 @@ on:
jobs:
test:
runs-on: macos-latest
environment: 'EclipseSource Fastlane Match'
environment: 'es-fastlane-match'
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4

- name: Install the Apple certificate and provisioning profile
uses: ./
with:
app_identifier: 'com.eclipsesource.*'
profile_type: 'development'
match_git_url: ${{ secrets.TABRIS_IOS_MATCH_GIT_URL }}
match_git_branch: ${{ secrets.TABRIS_IOS_MATCH_GIT_BRANCH }}
match_git_url: ${{ vars.TABRIS_IOS_MATCH_GIT_URL }}
match_git_branch: ${{ vars.TABRIS_IOS_MATCH_GIT_BRANCH }}
match_git_ssh_key: ${{ secrets.TABRIS_IOS_MATCH_GIT_SSH_KEY }}
match_password: ${{ secrets.TABRIS_IOS_MATCH_PASSWORD }}
fastlane_team_id: ${{ secrets.TABRIS_IOS_FASTLANE_TEAM_ID }}
fastlane_user: ${{ secrets.TABRIS_IOS_FASTLANE_USER }}
fastlane_team_id: ${{ vars.TABRIS_IOS_FASTLANE_TEAM_ID }}
fastlane_user: ${{ vars.TABRIS_IOS_FASTLANE_USER }}

- name: Cleanup
run: |
Expand Down

0 comments on commit a7a887f

Please sign in to comment.