Skip to content

update vpm packages #37

update vpm packages

update vpm packages #37

Workflow file for this run

name: update vpm packages
on:
workflow_dispatch:
permissions:
contents: write
jobs:
update:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9.5.0
- name: Set up Node
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build
run: pnpm update:vpm
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Commit
run: |
git config --global user.name 'workflow'
git config --global user.email '[email protected]'
git add -A
git commit -m 'workflow: update vpm packages'
- name: Push
run: git push