Skip to content

bumped pnpm version

bumped pnpm version #2

name: Main
on:
push:
branches: [main]
workflow_dispatch:
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
name: Build and Push
steps:
- name: git-checkout
uses: actions/checkout@v2
- name: Install dependencies
run: |
npm install -g [email protected]
pnpm install
- name: Build
run: pnpm build
- name: Push
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
GIT_CLONE_PROTECTION_ACTIVE: false
BRANCH: build
FOLDER: ./src
MESSAGE: "Build: ({sha}) {msg}"