Skip to content

Commit

Permalink
we so back 4
Browse files Browse the repository at this point in the history
  • Loading branch information
buffet-time committed Jul 15, 2024
1 parent 35aafd6 commit db0be6f
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 19 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/build-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Read the pnpm version from the `.pnpmrc` file
- name: Read .pnpmrc
Expand All @@ -21,24 +21,20 @@ jobs:
path: ./.pnpmrc

- name: Cache PNPM modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-

- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
with:
version: '${{ steps.pnpm_version.outputs.content }}'

# Read node version from `.nvmrc` file
- id: nvmrc
uses: browniebroke/read-nvmrc-action@v1

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
# use the output from the action
node-version: '${{ steps.nvmrc.outputs.node_version }}'
node-version-file: '.nvmrc'

- name: Install `node_modules`
run: pnpm install
Expand All @@ -50,7 +46,7 @@ jobs:
run: pnpm build

- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4.3.3
uses: JamesIves/github-pages-deploy-action@v4.6.3
with:
branch: gh-pages
folder: dist
14 changes: 5 additions & 9 deletions .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: actions/checkout@v4

# Read the pnpm version from the `.pnpmrc` file
- name: Read .pnpmrc
Expand All @@ -20,24 +20,20 @@ jobs:
path: ./.pnpmrc

- name: Cache PNPM modules
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ~/.pnpm-store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: ${{ runner.os }}-

- uses: pnpm/action-setup@v2.2.2
- uses: pnpm/action-setup@v4
with:
version: '${{ steps.pnpm_version.outputs.content }}'

# Read node version from `.nvmrc` file
- id: nvmrc
uses: browniebroke/read-nvmrc-action@v1

- uses: actions/setup-node@v3
- uses: actions/setup-node@v4
with:
# use the output from the action
node-version: '${{ steps.nvmrc.outputs.node_version }}'
node-version-file: '.nvmrc'

- name: Install `node_modules`
run: pnpm install
Expand Down
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
- Fixed last.fm/ other album images failed to load where it shows the title in the chart overflowing if text is too large
- Performance/ Stability
- Updating all packages
- Updated GitHub CI actions

## Version 1.1.3 - July 2nd, 2024

Expand Down

0 comments on commit db0be6f

Please sign in to comment.