Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
  • Loading branch information
stenjo committed Oct 9, 2024
1 parent 9462bdc commit ec8cf37
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions .github/workflows/stryker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,18 +32,11 @@ jobs:
- name: Install dependencies
run: npm install

- name: Decode the GitHub App Private Key
id: decode
run: |
private_key=$(echo "${{ secrets.GIST_APP_KEY }}" | base64 -d | awk 'BEGIN {ORS="\\n"} {print}' | head -c -2) &> /dev/null
echo "::add-mask::$private_key"
echo "private-key=$private_key" >> "$GITHUB_OUTPUT"
- uses: actions/create-github-app-token@v1
id: app-token
with:
app-id: ${{ vars.GIST_APP_ID }}
private-key: ${{ steps.decode.outputs.private-key }}
private-key: ${{ secrets.GIST_APP_KEY }}
owner: ${{ github.repository_owner }}

- name: Run StrykerJS
Expand Down

0 comments on commit ec8cf37

Please sign in to comment.