Skip to content

Commit

Permalink
fix: separate setup & run nodejs
Browse files Browse the repository at this point in the history
  • Loading branch information
aeppling committed Sep 17, 2024
1 parent f5c50f2 commit 91eb82b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/appversion.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,12 @@ jobs:
- name: print new latest kexa version
run: echo ${{ steps.get_latest_release.outputs.release }}

- name: Run Javascript to update local files
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'

- name: Run Javascript to update local files
run: |
npm install
node update-app-version.js "${{ steps.get_latest_release.outputs.release }}"
Expand Down

0 comments on commit 91eb82b

Please sign in to comment.