Skip to content

Commit

Permalink
fix yarn order
Browse files Browse the repository at this point in the history
  • Loading branch information
frnsys committed Aug 11, 2024
1 parent 17ff938 commit 23bb8c3
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,9 @@ jobs:

- name: Setup electron
working-directory: build
run: yarn install --dev
run: |
cp package.game.json package.json
yarn install --dev
- name: Build game
run: trunk build --release --config hes-game/Trunk.toml --dist build/site
Expand All @@ -62,7 +64,6 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
cp package.game.json package.json
cp build/icon.game.png build/icon.png
yarn build ${{ matrix.args }} --publish always
Expand Down

0 comments on commit 23bb8c3

Please sign in to comment.