Skip to content

Commit

Permalink
ci: fix update ruffle, run before builder (#222)
Browse files Browse the repository at this point in the history
Follow up to #220, update ruffle before running dockerized CI build
  • Loading branch information
ikreymer authored Jun 4, 2024
1 parent e231e2a commit f67aa5c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .github/workflows/buildapp.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,9 @@ jobs:
**/node_modules
key: ${{ runner.os }}-${{ secrets.CACHE_VERSION }}-${{ hashFiles('**/yarn.lock') }}

- name: Update Ruffle
run: yarn run update-ruffle

- name: Run Build
env:
APPLE_ID: ${{ secrets.APPLE_ID }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
"pack-signed": "electron-builder",
"dist": "yarn run build && yarn run pack",
"dist-dev": "yarn run build-dev && yarn run pack",
"release": "yarn run update-ruffle && yarn run build && electron-builder",
"release": "yarn run build && electron-builder",
"lint": "eslint ./src/ webpack.config.js"
},
"build": {
Expand Down

0 comments on commit f67aa5c

Please sign in to comment.