Skip to content

Commit

Permalink
Publish workflow update
Browse files Browse the repository at this point in the history
  • Loading branch information
RNEvok committed Jul 1, 2024
1 parent 742ef0e commit 02a913a
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/npmPublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,15 @@ jobs:
run: cp ./index.d.ts ./build
- name: Update build GitHub README.md file
run: cp ./README.md ./build
- name: Upload build artifact
uses: actions/upload-artifact@v3
with:
path: build
name: codebud-build
- name: Download build artifact
uses: actions/download-artifact@v3
with:
name: codebud-build
- name: Go to build folder & publish new version to NPM
run: cd build && npm version --no-git-tag-version $(npm view @appklaar/codebud@latest version) && npm version --no-git-tag-version ${{ env.NPM_VERSION_MODIFIER }} && npm publish
env:
Expand Down

0 comments on commit 02a913a

Please sign in to comment.