Skip to content

Commit 346aa36

Browse files
committed
fix: correct input name for artifact path in build-nodejs workflow
fix: update checkout step to fetch tags in update-major-tag workflow
1 parent 15e215c commit 346aa36

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/build-nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
required: false
88
type: boolean
99
default: false
10-
path-to-artifact:
10+
path-to-artifacts:
1111
required: false
1212
type: string
1313

@@ -42,4 +42,4 @@ jobs:
4242
uses: actions/upload-artifact@v4
4343
with:
4444
name: build-artifacts
45-
path: ${{ inputs.path-to-artifact }}
45+
path: ${{ inputs.path-to-artifacts }}

.github/workflows/update-major-tag.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- name: Checkout
1515
uses: actions/checkout@v4
1616
with:
17-
fetch-depth: 0
17+
fetch-tags: true
1818

1919
- name: Extract version info
2020
id: version

0 commit comments

Comments
 (0)