Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
ci: missing github token (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
ronnetzer authored Mar 1, 2022
1 parent 6676d10 commit c52bc3b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -124,6 +124,7 @@ jobs:
if: ${{ fromJSON(needs.setup.outputs.hasChanges) && github.event_name == 'push' && github.ref == 'refs/heads/main' }}
needs: [setup, execute]
outputs:
github-token: ${{ steps.githubAppAuth.outputs.github-token }}
released: ${{ steps.release.outputs.released }}
version: ${{ steps.release.outputs.version }}
major: ${{ steps.release.outputs.major }}
Expand Down
4 changes: 2 additions & 2 deletions packages/utils/src/lib/exec.spec.ts
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
import { exec as ghExec } from '@actions/exec';

import { Exec } from './exec';

jest.mock('@actions/exec');
jest.mock('./logger');

import { exec as ghExec } from '@actions/exec';

describe('exec', () => {
let exec: Exec;

Expand Down

0 comments on commit c52bc3b

Please sign in to comment.