Merge pull request #102 from mediamonks/dependabot/npm_and_yarn/vite-… #41
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 dev release | |
on: | |
push: | |
branches: [main] | |
jobs: | |
bump-version: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out source | |
uses: actions/checkout@v4 | |
- name: Setup Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: '20' | |
cache: 'npm' | |
- name: Install npm packages | |
run: npm ci | |
- name: Setup Git | |
run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
- name: Bump Version | |
run: | | |
echo "$(npm pkg get version | cut -d '"' -f 2 | cut -d '-' -f 1)-dev.$(git rev-parse --short HEAD)" | xargs npm version --no-git-tag-version | |
- name: Build & Publish | |
run: npm run build | |
- name: Publish | |
run: | | |
npm run prepare-publish | |
cd ./dist | |
npm config set //registry.npmjs.org/:_authToken ${NPM_TOKEN} | |
npm publish --tag next | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} |