Skip to content

Commit

Permalink
fix: build issues
Browse files Browse the repository at this point in the history
  • Loading branch information
riderx committed Jul 14, 2023
1 parent 741e627 commit fa4170f
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Use Node.js
uses: actions/setup-node@v3
with:
Expand All @@ -37,7 +37,7 @@ jobs:
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Use Node.js
uses: actions/setup-node@v3
with:
Expand All @@ -58,7 +58,7 @@ jobs:
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Use Node.js
uses: actions/setup-node@v3
with:
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/bump_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:

jobs:
bump-version:
if: "!startsWith(github.event.head_commit.message, 'chore(release):')"
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release):') }}
runs-on: ubuntu-latest
name: "Bump version and create changelog with standard version"
steps:
Expand All @@ -19,7 +19,7 @@ jobs:
token: '${{ secrets.PERSONAL_ACCESS_TOKEN }}'
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Use Node.js
uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -65,14 +65,14 @@ jobs:
destination-branch: main
commit-email: martindonadieu@gmail.com
create-cache:
if: "!startsWith(github.event.head_commit.message, 'chore(release):')"
if: ${{ !startsWith(github.event.head_commit.message, 'chore(release):') }}
runs-on: ubuntu-latest
name: "Create global cache on main branch"
steps:
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Use Node.js
uses: actions/setup-node@v3
with:
Expand All @@ -82,4 +82,4 @@ jobs:
id: install_code
run: pnpm install --frozen-lockfile
- name: CLI capacitor-standard-version install
run: pnpm dlx capacitor-standard-version@latest --version
run: pnpm dlx capacitor-standard-version@latest --version
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Use Node.js
uses: actions/setup-node@v3
with:
Expand All @@ -39,7 +39,7 @@ jobs:
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Use Node.js
uses: actions/setup-node@v3
with:
Expand All @@ -59,7 +59,7 @@ jobs:
uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
with:
version: 7
version: 8
- name: Use Node.js
uses: actions/setup-node@v3
with:
Expand Down

0 comments on commit fa4170f

Please sign in to comment.