Skip to content

Commit

Permalink
Merge pull request #40 from NxtLvLSoftware/dev-to-dist
Browse files Browse the repository at this point in the history
Merge dev changes to dist
  • Loading branch information
JackNoordhuis authored Dec 11, 2024
2 parents 346a082 + 5baf2d9 commit 87b7753
Showing 1 changed file with 17 additions and 11 deletions.
28 changes: 17 additions & 11 deletions .github/workflows/pages-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,18 @@ jobs:
run: |
sed -i '28,127d' README.md
- name: Use pnpm ${{ env.PNPM_VERSION }}
uses: pnpm/action-setup@v4
with:
version: ${{ env.PNPM_VERSION }}
run_install: false

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}

- name: Cache node_modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('package.json') }}
cache: pnpm
cache-dependency-path: 'package.json'

- name: Install dependencies
run: npm run clean-install
Expand Down Expand Up @@ -80,16 +82,20 @@ jobs:
run: |
sed -i 's/file:..\/..\//rc/g' package.json
- name: Use pnpm ${{ env.PNPM_VERSION }}
uses: pnpm/action-setup@v4
with:
version: ${{ env.PNPM_VERSION }}
run_install: false

- name: Use Node.js ${{ env.NODE_VERSION }}
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
cache: pnpm

- name: Cache node_modules
uses: actions/cache@v4
with:
path: node_modules
key: ${{ runner.os }}}-${{ env.NODE_VERSION }}-node_modules-${{ hashFiles('package.json') }}
- name: Install dependencies
run: pnpm run clean && pnpm add ./alpine-typescript

- name: Install dependencies
run: npm run clean-install
Expand Down

0 comments on commit 87b7753

Please sign in to comment.