Skip to content

Commit

Permalink
fix: add sentry and amplitude information to github vsix (#462)
Browse files Browse the repository at this point in the history
  • Loading branch information
bastiandoetsch authored May 27, 2024
1 parent 0a28a6b commit 8c6889e
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/release-stable.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,14 @@ jobs:
run: npm ci

- name: Package VSIX
run: echo y | vsce package --no-git-tag-version --no-update-package-json ${{ needs.publish.outputs.new-version }}
run: |
run: |
sed -i \
-e 's|${env.SNYK_VSCE_AMPLITUDE_EXPERIMENT_API_KEY}|${{ secrets.SNYK_VSCE_AMPLITUDE_EXPERIMENT_API_KEY }}|g' \
-e 's|${env.SNYK_VSCE_SENTRY_DSN_KEY}|${{ secrets.SNYK_VSCE_SENTRY_DSN_KEY }}|g' \
snyk.config.json
echo y | vsce package --no-git-tag-version --no-update-package-json ${{ needs.publish.outputs.new-version }}
- name: Extract release notes
id: extract-release-notes
Expand Down

0 comments on commit 8c6889e

Please sign in to comment.