Geoffrey.C

Results 12 comments of Geoffrey.C

`@semantic-release/git` is not in the [default list of plugins of semantic release](https://semantic-release.gitbook.io/semantic-release/usage/plugins#default-plugins) and it must be added to `extra_plugins` in your actions file. See [extra_plugins](https://github.com/cycjimmy/semantic-release-action#extra_plugins).

Maybe the dependent packages are still cached. No matter what, if you use `@semantic-release/git`, add it to `extra_plugins`.

`@actions/core` is not in the `GPR` list. You can change to `npm` to install it.

I'm not sure whether the problem is caused by this action or semantic-release. Have you ever tried to directly use semantic-release to release failure commit?

semantic-release uses Git tags to determine the commits added since the last release. If a release has been published before setting up semantic-release you must make sure the most recent...

Very strangely, I checked [your action log](https://github.com/Berkmann18/json-fixer/runs/784989934). It says "Found git tag v1.4.1 associated with version 1.4.1 on branch master". But your latest tag is v1.4.2 and the version on...

I think I know where the problem is. You need to add the `package.json` file to the `@semantic-release/git` plugin. `semantic-release` automatically updates the `package.json` file before releasing it to npm,...

Try the `publishCmd` hook of [@semantic-release/exec](https://github.com/semantic-release/exec) to run your task before publish.

> Code: > @ViewChild('streamContainer', { static: true, read: ElementRef }) > streamContainer: ElementRef; > ngAfterViewInit(): void { > // Setup the WebSocket connection and start the player > const client...

Set `preserveDrawingBuffer` to `true` in overlayOptions. ```javascript new JSMpeg.VideoElement('#wrapper', 'video.ts', { // some options in jsmpeg-player ... }, { // some overlay options in jsmpeg preserveDrawingBuffer: true }); ```