From be20c64676ff24cadcc4b5c01050ca245e3e77d6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=AFeul?= <45822175+maiieul@users.noreply.github.com> Date: Sun, 11 Aug 2024 16:13:20 +0200 Subject: [PATCH] chore(repo): add pkg.pr.new (#235) * chore(repo): add pkg.pr.new * chore(repo): use pnpx --- .github/workflows/test.yml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index d8bcb75..73dd56d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -25,3 +25,18 @@ jobs: - name: Test uses: ./.github/actions/test + + continuous-release: + runs-on: ubuntu-latest + if: github.event_name == 'pull_request' + steps: + - uses: actions/checkout@v3 + - name: Setup + uses: ./.github/actions/setup + with: + node_version: 20 + - run: pnpx nx run qwik-nx:build + - run: pnpx pkg-pr-new publish --pnpm ./dist/packages/qwik-nx + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GITHUB_TOKEN is provided automatically in any repository +