Skip to content

Commit 35fa680

Browse files
committed
Percy token never comes from env when local-running
1 parent 54414e6 commit 35fa680

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/test-ui.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
6464
- name: ember exam
6565
id: ember_exam
6666
env:
67-
PERCY_TOKEN: ${{ env.PERCY_TOKEN || secrets.PERCY_TOKEN }}
67+
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
6868
PERCY_PARALLEL_NONCE: ${{ needs.pre-test.outputs.nonce }}
6969
run: |
7070
yarn exam:parallel --split=${{ matrix.split }} --partition=${{ matrix.partition }} --json-report=test-results/test-results.json
@@ -132,7 +132,7 @@ jobs:
132132

133133
- name: finalize
134134
env:
135-
PERCY_TOKEN: ${{ env.PERCY_TOKEN || secrets.PERCY_TOKEN }}
135+
PERCY_TOKEN: ${{ secrets.PERCY_TOKEN }}
136136
PERCY_PARALLEL_NONCE: ${{ needs.pre-test.outputs.nonce }}
137137
run: yarn percy build:finalize
138138

ui/app/index.html

+1
Original file line numberDiff line numberDiff line change
@@ -27,5 +27,6 @@
2727
<script src="{{rootURL}}assets/nomad-ui.js"></script>
2828

2929
{{content-for "body-footer"}}
30+
3031
</body>
3132
</html>

0 commit comments

Comments
 (0)