Skip to content

Commit

Permalink
chore: update pnpm, move variables to top
Browse files Browse the repository at this point in the history
  • Loading branch information
mishamyrt committed Dec 27, 2023
1 parent 4b9c391 commit 17466b7
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 12 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,18 @@ on:
default: false
type: boolean

env:
GO_VERSION: '1.21.4'
WAILS_VERSION: '2.7.1'
PNPM_VERSION: '8.13.1'

jobs:
build:
name: App
strategy:
matrix:
os: [macos-latest, ubuntu-latest]
env:
GO_VERSION: '1.21.4'
PNPM_VERSION: '8.6.2'
WAILS_VERSION: '2.7.1'
KEYCHAIN_NAME: macos-build
KEYCHAIN_PROFILE: nuga-notary
runs-on: ${{ matrix.os }}
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/quality-assurance.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
name: Quality assurance

on: [push, workflow_dispatch]
on:
- push
- workflow_dispatch

env:
GO_VERSION: '1.21.4'
PNPM_VERSION: '8.13.1'

jobs:
lint:
Expand All @@ -12,11 +18,11 @@ jobs:
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.21.4'
go-version: ${{ env.GO_VERSION }}
cache-dependency-path: app/go.sum
- uses: pnpm/action-setup@v2
with:
version: 8.6.2
version: ${{ env.PNPM_VERSION }}
- name: Install C/C++ deps
run: sudo apt install libudev-dev -y
- name: Install frontend deps
Expand Down
6 changes: 0 additions & 6 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
name: Release Nuga

env:
WAILS_VERSION: 'v2.7.1'
PNPM_VERSION: '8.6.2'
GO_VERSION: '1.21.4'
LINUX_BUILDER_IMAGE: mishamyrt/nuga-linux-builder:latest-arm64

on:
push:
tags:
Expand Down

0 comments on commit 17466b7

Please sign in to comment.