You've already forked AstralRinth
forked from didirus/AstralRinth
Code signing + auto updater (#122)
* Code signing + auto updater * remove dist * update actions * fixes * fix more * commit * fix cache dir * quotes * fix hopefully? * why yaml * Fix cache dep path * Fix updating artifacts * fix ubuntu ver * enable autoupdater * fix pubkey * fix invalid config * pass in signing vars * update pubkey * Improve compile times
This commit is contained in:
21
.github/workflows/gui-build.yml
vendored
21
.github/workflows/gui-build.yml
vendored
@@ -13,22 +13,19 @@ jobs:
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v3
|
||||
- name: Use Node.js
|
||||
|
||||
- name: Sync node version and setup cache
|
||||
uses: actions/setup-node@v3
|
||||
with:
|
||||
node-version: 18.x
|
||||
- name: Get yarn cache
|
||||
id: yarn-cache
|
||||
run: echo "::set-output name=dir::$(yarn cache dir)"
|
||||
- uses: actions/cache@v3
|
||||
with:
|
||||
path: ${{ steps.yarn-cache.outputs.dir }}
|
||||
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
|
||||
restore-keys: |
|
||||
${{ runner.os }}-yarn-
|
||||
node-version: 16
|
||||
cache: 'yarn'
|
||||
cache-dependency-path: "theseus_gui"
|
||||
|
||||
- name: Install dependencies
|
||||
run: yarn install --immutable --immutable-cache --check-cache
|
||||
|
||||
- name: Run Lint
|
||||
run: yarn run lint
|
||||
|
||||
- name: Build
|
||||
run: yarn run build
|
||||
run: yarn run build
|
||||
Reference in New Issue
Block a user