-
Notifications
You must be signed in to change notification settings - Fork 5.9k
refactor(ci): fix npm workflows #4797
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
✨ Coder.com for PR #4797 deployed! It will be updated on every commit.
|
91fc1cc
to
ea161c2
Compare
Codecov Report
@@ Coverage Diff @@
## main #4797 +/- ##
=======================================
Coverage 69.18% 69.18%
=======================================
Files 29 29
Lines 1652 1652
Branches 363 363
=======================================
Hits 1143 1143
Misses 432 432
Partials 77 77 Continue to review full report at Codecov.
|
c7773f4
to
24c4b27
Compare
This refactors the npm workflows to use the download-artifact GitHub Action. We had problems in the past with our download_artifact custom bash function. This also fixes an issue where we weren't downloading the correct artifacts when publishing beta and dev tags to npm.
24c4b27
to
eed8d58
Compare
@code-asher this is good to go now! |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looking really good! I am stoked about beginning the move to the download action.
Transitioning back to draft to address changes |
* feat: refactor npm workflows to use download-artifact This refactors the npm workflows to use the download-artifact GitHub Action. We had problems in the past with our download_artifact custom bash function. This also fixes an issue where we weren't downloading the correct artifacts when publishing beta and dev tags to npm. * fixup: remove unused env var * fixup! add download-artifcat to npm-brew" * fixup! remove unnecessary code comment * fixup! move NPM_ENVIRONMENT logic to script
This fixes a couple issues with the npm workflows, mainly ensuring that we download the correct npm artifact before uploading to npm.
download-artifact
actionFixes #4790