We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1384d11 commit 885ae21Copy full SHA for 885ae21
action.yml
@@ -80,10 +80,8 @@ runs:
80
- name: Native Fingerprint
81
id: fingerprint
82
run: |
83
- FINGERPRINT_OUTPUT=$(npx rnef fingerprint -p ios --verbose)
84
- echo "$FINGERPRINT_OUTPUT" >&2
85
- FINGERPRINT=$(echo "$FINGERPRINT_OUTPUT" | grep -oE '[a-f0-9]{40}')
86
- echo "FINGERPRINT=$FINGERPRINT" >> $GITHUB_ENV
+ FINGERPRINT_OUTPUT=$(npx rnef fingerprint -p ios --raw)
+ echo "FINGERPRINT=$FINGERPRINT_OUTPUT" >> $GITHUB_ENV
87
shell: bash
88
working-directory: ${{ inputs.working-directory }}
89
0 commit comments