Skip to content

Commit 1cef110

Browse files
authored
fix: issue with cicd release.yml (#301)
1 parent a3c7441 commit 1cef110

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
build-showcases:
2929
uses: ./.github/workflows/01-build-showcases.yml
30-
needs: [build-packages]
30+
needs: [build-packages, get-publish-version]
3131
with:
3232
release: ${{ needs.get-publish-version.outputs.release }}
3333
preRelease: ${{ needs.get-publish-version.outputs.preRelease }}

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,15 +233,14 @@ Playwright is used to create and compare screenshots of each individual componen
233233
234234
To update screenshots, the following steps are needed for running tests on Linux in CI (Github Actions):
235235
236-
```
236+
```shell
237237
docker run --rm --network host -v $(pwd):/work/ -w /work/ -it mcr.microsoft.com/playwright:v1.30.0-focal /bin/bash
238238

239239
npm install
240240

241241
cd output/${frameworkFolder}
242242

243243
npx playwright test --update-snapshots
244-
245244
```
246245
247246
## Contributions

0 commit comments

Comments
 (0)