This repository was archived by the owner on Jan 18, 2025. It is now read-only.
chore(deps): update dependency @rollup/plugin-babel to v6.0.4 #147
This file contains hidden or 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: Examples | |
on: | |
push: | |
branches: [main] | |
jobs: | |
bump: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
ref: main | |
- name: Use Node.js 14 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 14.x | |
- name: Setup user | |
run: | | |
git config --global user.email actions@users.noreply.github.com | |
git config --global user.name "Action" | |
- name: Bump version | |
run: | | |
git init | |
cd examples | |
eval $(echo yarn add vue-next-select@$(cat ../package.json | head -3 | sed 1,2d | sed 's/^.*\: "//' | sed 's/",$//')) | |
git add . | |
git commit -m 'chore(bot): bump vue-next-select' || exit 0 | |
cd .. | |
- name: Push | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: 'main' | |
directory: '.' |