Skip to content

Commit

Permalink
Bug fix in CI/CD workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
rohhn authored and rohhn committed Jan 29, 2024
1 parent 3b2ba48 commit d03cf76
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/github_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Check Front-end repo
uses: actions-setup-node@v2
- name: Configure NodeJS
uses: actions/setup-node@v3
with:
- node-version: 21.x
run:
cd svelte_client
npm install
npm run build
- node-version: '21.x'

- name: Check Front-end build
- run: |
cd svelte_client
npm install
npm run build
- name: Deploy using SSH
uses: appleboy/ssh-action@master
Expand Down

0 comments on commit d03cf76

Please sign in to comment.