We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1da1b0e commit be20c64Copy full SHA for be20c64
.github/workflows/test.yml
@@ -25,3 +25,18 @@ jobs:
25
26
- name: Test
27
uses: ./.github/actions/test
28
+
29
+ continuous-release:
30
+ runs-on: ubuntu-latest
31
+ if: github.event_name == 'pull_request'
32
+ steps:
33
+ - uses: actions/checkout@v3
34
+ - name: Setup
35
+ uses: ./.github/actions/setup
36
+ with:
37
+ node_version: 20
38
+ - run: pnpx nx run qwik-nx:build
39
+ - run: pnpx pkg-pr-new publish --pnpm ./dist/packages/qwik-nx
40
+ env:
41
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # GITHUB_TOKEN is provided automatically in any repository
42
0 commit comments