Skip to content

Commit

Permalink
change ordering
Browse files Browse the repository at this point in the history
  • Loading branch information
sestinj committed Aug 18, 2024
1 parent d5522a9 commit 5b38fc9
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/jetbrains-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,22 +140,11 @@ jobs:
cd ../../core
npm ci
# npm install binary
- name: Install binary node_modules
run: |
cd ../../binary
npm ci
# npm install gui
- name: Install gui node_modules
- name: Install gui node_modules and build
run: |
cd ../../gui
npm ci
# build gui
- name: Build gui
run: |
cd ../../gui
npm run build
# Run prepackage.js script
Expand All @@ -168,6 +157,12 @@ jobs:
# https://github.com/microsoft/vscode-ripgrep/issues/9#issuecomment-643965333
GITHUB_TOKEN: ${{ secrets.CI_GITHUB_TOKEN }}

# npm install binary
- name: Install binary node_modules
run: |
cd ../../binary
npm ci
# Build binaries
- name: Build the binaries
run: |
Expand Down Expand Up @@ -224,6 +219,9 @@ jobs:
shell: bash
run: |
cd ../../extensions/intellij/build/distributions
echo "Builds:"
ls
echo "---"
FILENAME=`ls *.zip`
unzip "$FILENAME" -d content
Expand Down

0 comments on commit 5b38fc9

Please sign in to comment.