Skip to content

Commit 88703c9

Browse files
authored
Archive NPM publish logs in case of failure. (#118)
1 parent b12eedd commit 88703c9

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/release.yml

+7-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2020, 2023, Oracle Corporation and/or its affiliates. All rights reserved.
1+
# Copyright 2020, 2025, Oracle Corporation and/or its affiliates. All rights reserved.
22
# Licensed under the Universal Permissive License v 1.0 as shown at
33
# https://oss.oracle.com/licenses/upl.
44

@@ -46,3 +46,9 @@ jobs:
4646
- run: npm publish
4747
env:
4848
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_KEY }}
49+
- name: Archive Failure Logs
50+
if: failure()
51+
uses: actions/upload-artifact@v4
52+
with:
53+
name: npm.log
54+
path: /home/runner/.npm/_logs/*

0 commit comments

Comments
 (0)