Skip to content

Commit

Permalink
Loosen runtime requirements for CI/CD workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
ThrRip committed Nov 5, 2023
1 parent 65179a9 commit fef5b73
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,18 +19,18 @@ on:
jobs:
build:
name: Build
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8.6
version: 8
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: 18.16
node-version: lts
check-latest: true
cache: 'pnpm'
cache-dependency-path: pnpm-lock.yaml
Expand All @@ -57,7 +57,7 @@ jobs:
name: Deploy to production
if: github.repository == 'ThrRip/mzg.fan' && github.ref == 'refs/heads/main'
needs: build
runs-on: ubuntu-22.04
runs-on: ubuntu-latest
env:
MASKING_PROD_CLOUD_SSH_HOST: ${{ secrets.PROD_CLOUD_SSH_HOST }}
steps:
Expand Down

0 comments on commit fef5b73

Please sign in to comment.