From 88fb345c942c81ca8db6969a0d7d5144465f711b Mon Sep 17 00:00:00 2001 From: Vinyzu <50874994+Vinyzu@users.noreply.github.com> Date: Sun, 3 Nov 2024 09:52:35 +0100 Subject: [PATCH] Patchright Release [Versioning Release] --- .github/workflows/patchright_workflow.yml | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/.github/workflows/patchright_workflow.yml b/.github/workflows/patchright_workflow.yml index c2a1f23..b292994 100644 --- a/.github/workflows/patchright_workflow.yml +++ b/.github/workflows/patchright_workflow.yml @@ -84,13 +84,17 @@ jobs: cd playwright node "../patchright_nodejs_rebranding.js" - - name: Publish Patchright-Core Package + - name: Create Empty Versioning Release if: steps.version_check.outputs.proceed == 'true' - run: | - cd playwright/packages/patchright-core/ - npm publish - env: - NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} + uses: actions/create-release@v1 + with: + tag_name: ${{ env.playwright_version }} + release_name: ${{ env.playwright_version }} + body: | + This is an automatic deployment in response to a new release of [microsoft/playwright](https://github.com/microsoft/playwright). + This Release is only used for Versioning. + draft: false + prerelease: false - name: Publish Patchright-Core Package if: steps.version_check.outputs.proceed == 'true'