Bump vite-plugin-vue-devtools from 7.4.5 to 7.4.6 #151
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: Deploy to gh-pages | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy-gh-pages: | |
name: Deploying to gh-pages | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Node.js for use with actions | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
- name: Checkout branch | |
uses: actions/checkout@v4 | |
- name: Clean install dependencies | |
run: npm ci | |
- name: Run deploy script | |
shell: sh | |
env: | |
BACKEND: ${{ secrets.BACKEND }} | |
BASE_URL: ${{ secrets.BASE_URL }} | |
run: | | |
git config user.name "Cristian Gonzalez" && git config user.email "[email protected]" | |
sh deployToGithub.sh $BACKEND $BASE_URL |