Skip to content

Commit cd80a0b

Browse files
punitaraniclaude
andauthored
fix(ci): pin upload-artifact to v7 in npm publish workflow (#181)
The release-build job in publish-npm.yml referenced actions/upload-artifact@v8, which does not exist (upload-artifact's latest major is v7; only download-artifact has a v8). This made the first npm release fail at the "Getting action download info" stage with "Unable to resolve action actions/upload-artifact@v8". Every other upload-artifact reference in the repo already uses v7; align this one. download-artifact@v8 (line 158) is valid and left unchanged. Co-authored-by: Claude <noreply@anthropic.com>
1 parent 7089546 commit cd80a0b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/publish-npm.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ jobs:
125125
run: npm pack
126126

127127
- name: Upload tarball
128-
uses: actions/upload-artifact@v8
128+
uses: actions/upload-artifact@v7
129129
with:
130130
name: npm-tarball
131131
path: fli-js/*.tgz

0 commit comments

Comments
 (0)