Merge pull request #2 from canopas/fix-publish-flow #6
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
name: Publish Package to npmjs | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
vue-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20.x" | |
registry-url: "https://registry.npmjs.org" | |
- run: | | |
cd vue | |
npm ci | |
npm run build | |
# Check if the vue-file-upload version already exists on npm | |
- name: Check Version Existence | |
id: check_vue_version | |
run: | | |
if npm show @canopassoftware/[email protected]; then | |
echo "Version already published. Skipping npm publish." | |
echo "::set-output name=skip_vue_publish::true" | |
else | |
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_vue_version.outputs.skip_vue_publish != 'true' | |
run: | | |
cd vue | |
npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
react-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: "20.x" | |
registry-url: "https://registry.npmjs.org" | |
- run: | | |
cd react | |
npm ci | |
npm run build | |
# Check if the react-file-upload version already exists on npm | |
- name: Check Version Existence | |
id: check_react_version | |
run: | | |
if npm show @canopassoftware/[email protected]; then | |
echo "Version already published. Skipping npm publish." | |
echo "::set-output name=skip_react_publish::true" | |
else | |
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_react_version.outputs.skip_react_publish != 'true' | |
run: | | |
cd react | |
npm publish --access public | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |