Skip to content

Commit

Permalink
fix: wrong display token
Browse files Browse the repository at this point in the history
  • Loading branch information
hrenaud committed Aug 2, 2024
1 parent 3b83942 commit 63c9d43
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,13 +71,19 @@ jobs:
- run: npm ci
- name: Debug token
run: echo ${GITHUB_TOKEN:0:5}
run: echo ${APPLE_ID:0:5}
run: echo ${APPLE_PASSWORD:0:5}
run: echo ${APPLE_TEAM_ID:0:5}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Debug APPLE_ID
run: echo ${APPLE_ID:0:5}
env:
APPLE_ID: ${{ secrets.APPLE_ID }}
- name: Debug APPLE_PASSWORD
run: echo ${APPLE_PASSWORD:0:5}
env:
APPLE_PASSWORD: ${{ secrets.APPLE_PASSWORD }}
- name: Debug APPLE_TEAM_ID
run: echo ${APPLE_TEAM_ID:0:5}
env:
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
- name: Publish app
env:
Expand Down

0 comments on commit 63c9d43

Please sign in to comment.