Skip to content

chore(deps-dev): bump vite-plugin-pwa from 0.16.5 to 0.17.4 #81

chore(deps-dev): bump vite-plugin-pwa from 0.16.5 to 0.17.4

chore(deps-dev): bump vite-plugin-pwa from 0.16.5 to 0.17.4 #81

Workflow file for this run

name: code-gear > build
on:
pull_request:
branches:
- master
push:
branches:
- master
workflow_call:
permissions:
contents: write
jobs:
build:
name: Creating a Production Build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Derive appropriate SHAs for base and head for `nx affected` commands
uses: nrwl/nx-set-shas@v3
with:
main-branch-name: 'master'
- run: |
echo "BASE: ${{ env.NX_BASE }}"
echo "HEAD: ${{ env.NX_HEAD }}"
- name: Installing Node.js 20.x
uses: actions/setup-node@v3
with:
node-version: 20.8.0
cache: 'yarn'
- name: Cache Yarn dependencies
uses: actions/cache@v3
id: cache-yarn-cache
with:
path: |
.yarn/cache
node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/*.yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Installing dependencies
run: yarn install
- name: Creating a Production Build
run: yarn nx run root:build
- name: Pushing to build branch
uses: s0/git-publish-subdir-action@develop
env:
REPO: self
BRANCH: build
FOLDER: dist
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MESSAGE: "Build: ({sha}) {msg}"