Merge pull request #181 from caproverhub/renovate/all-minor-patch #278
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: Publish One Click Apps | |
on: | |
push: | |
branches: [master] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Install pnpm | |
run: npm install -g pnpm@8 | |
- name: Install dependencies with pnpm | |
run: pnpm install | |
- name: Deploy to GitHub Pages | |
run: pnpm run publish | |
env: | |
GITHUB_TOKEN: $GITHUB_ACTOR:${{ secrets.GITHUB_TOKEN }} |