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 f859c73 commit 4fa5cf5Copy full SHA for 4fa5cf5
.github/workflows/publish.yml
@@ -13,17 +13,19 @@ env:
13
14
jobs:
15
publish:
16
- - name: Checkout
17
- uses: actions/checkout@v4
18
- with:
19
- fetch-depth: 0
+ runs-on: ubuntu-latest
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v4
20
+ with:
21
+ fetch-depth: 0
22
- - name: Setup Node.js
- uses: ./.github/actions
23
+ - name: Setup Node.js
24
+ uses: ./.github/actions
25
- - name: Build
- run: npx nx affected -t build --parallel=3 --exclude='*,!tag:type:publish'
26
+ - name: Build
27
+ run: npx nx affected -t build --parallel=3 --exclude='*,!tag:type:publish'
28
- - name: Publish packages
- run: npx nx release publish
29
+ - name: Publish packages
30
+ run: npx nx release publish
31
0 commit comments