Merge pull request #4093 from serlo/dependabot/npm_and_yarn/path-to-r… #670
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: editor | |
on: | |
push: | |
branches: | |
- staging | |
- editor-package-vite | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
registry-url: https://registry.npmjs.org | |
- run: yarn | |
- name: Build editor package | |
run: yarn editor:build | |
- name: Check if current version is already published | |
id: check_published | |
run: | | |
CURRENT_VERSION=$(node -p "require('./packages/editor/package.json').version") | |
if npm view @serlo/editor@$CURRENT_VERSION > /dev/null 2>&1; then | |
echo "already_published=true" >> $GITHUB_OUTPUT | |
else | |
echo "already_published=false" >> $GITHUB_OUTPUT | |
fi | |
- name: Publish to npm | |
if: steps.check_published.outputs.already_published == 'false' | |
run: yarn editor:publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |