-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5fe3d29
commit 8af7cb6
Showing
1 changed file
with
14 additions
and
10 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,19 +21,21 @@ jobs: | |
# Check if the vue-file-upload version already exists on npm | ||
- name: Check Version Existence | ||
id: check_version | ||
id: check_vue_version | ||
run: | | ||
if npm show @canopassoftware/[email protected]; then | ||
echo "Version already published. Skipping npm publish." | ||
echo "::set-output name=skip_publish::true" | ||
echo "::set-output name=skip_vue_publish::true" | ||
else | ||
echo "::set-output name=skip_publish::false" | ||
echo "::set-output name=skip_vue_publish::false" | ||
fi | ||
# Publish only if the vue-file-upload version check passed | ||
- name: Publish to npm | ||
if: steps.check_version.outputs.skip_publish != true | ||
run: npm publish --access public | ||
if: steps.check_vue_version.outputs.skip_vue_publish != 'true' | ||
run: | | ||
cd vue | ||
npm publish --access public | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
|
@@ -52,18 +54,20 @@ jobs: | |
# Check if the react-file-upload version already exists on npm | ||
- name: Check Version Existence | ||
id: check_version | ||
id: check_react_version | ||
run: | | ||
if npm show @canopassoftware/[email protected]; then | ||
echo "Version already published. Skipping npm publish." | ||
echo "::set-output name=skip_publish::true" | ||
echo "::set-output name=skip_react_publish::true" | ||
else | ||
echo "::set-output name=skip_publish::false" | ||
echo "::set-output name=skip_react_publish::false" | ||
fi | ||
# Publish only if the react-file-upload version check passed | ||
- name: Publish to npm | ||
if: steps.check_version.outputs.skip_publish != true | ||
run: npm publish --access public | ||
if: steps.check_react_version.outputs.skip_react_publish != 'true' | ||
run: | | ||
cd react | ||
npm publish --access public | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |