Skip to content

Merge pull request #42 from mtsgi/dependabot/npm_and_yarn/postcss-8.4.31 #5

Merge pull request #42 from mtsgi/dependabot/npm_and_yarn/postcss-8.4.31

Merge pull request #42 from mtsgi/dependabot/npm_and_yarn/postcss-8.4.31 #5

Workflow file for this run

name: Deploy
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'npm'
- name: Build Project
run: |
npm install -g yarn
yarn install
yarn build --mode=production
- name: List output files
run: ls -R dist
- name: Push
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_branch: build
publish_dir: ./dist