Skip to content

Commit

Permalink
chore: Add ARGOS_TOKEN to secrets
Browse files Browse the repository at this point in the history
  • Loading branch information
sidharthv96 committed Jun 19, 2024
1 parent 993f66d commit b1f2f21
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,7 @@ jobs:
ARGOS_PARALLEL: ${{ env.CYPRESS_RECORD_KEY != '' }}
ARGOS_PARALLEL_TOTAL: 4
ARGOS_PARALLEL_INDEX: ${{ matrix.containers }}
ARGOS_TOKEN: ${{ secrets.ARGOS_TOKEN }}

- name: Upload Coverage to Codecov
uses: codecov/codecov-action@v4
Expand Down
2 changes: 1 addition & 1 deletion cypress.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export default eyesPlugin(
// Argos
registerArgosTask(on, config, {
uploadToArgos: !!process.env.CI,
token: 'fc3a35cf5200db928d65b2047861582d9444032b',
token: process.env.ARGOS_TOKEN,
});

// do not forget to return the changed config object!
Expand Down

0 comments on commit b1f2f21

Please sign in to comment.