Skip to content

fix(deps): update dependency @uivjs/vue-github-corners to v1 (#42) #48

fix(deps): update dependency @uivjs/vue-github-corners to v1 (#42)

fix(deps): update dependency @uivjs/vue-github-corners to v1 (#42) #48

Workflow file for this run

name: Build & Deploy
on:
push:
branches:
- main
jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
id-token: write
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- run: npm install
- run: npm run build
- run: npm run doc
- name: Create Tag
id: create_tag
uses: jaywcjlove/create-tag-action@main
with:
token: ${{ secrets.GITHUB_TOKEN }}
package-path: ./packages/base/package.json
- name: Generate Changelog
id: changelog
uses: jaywcjlove/changelog-generator@main
if: steps.create_tag.outputs.successful
with:
token: ${{ secrets.GITHUB_TOKEN }}
head-ref: ${{steps.create_tag.outputs.version}}
filter-author: (renovate-bot|Renovate Bot)
filter: '[R|r]elease[d]\s+[v|V]\d(\.\d+){0,2}'
- name: Create Release
uses: jaywcjlove/create-tag-action@main
with:
package-path: ./packages/base/package.json
release: true
body: |
${{ steps.changelog.outputs.compareurl }}
${{ steps.changelog.outputs.changelog }}
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./website/dist
# - run: npm publish --access public --provenance
# name: 📦 @vue-monorepo-template/base publish to NPM
# continue-on-error: true
# working-directory: packages/base
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
# - run: npm publish --access public --provenance
# name: 📦 @vue-monorepo-template/simple publish to NPM
# continue-on-error: true
# working-directory: packages/simple
# env:
# NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}