Skip to content

Commit

Permalink
Update minisign instal procedure
Browse files Browse the repository at this point in the history
  • Loading branch information
VenelinBakalov committed Jul 5, 2024
1 parent 3dc8c3b commit 3fe9d11
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/draft-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,6 @@ jobs:
- name: Use NPM 9.4.0
run: npm install -g [email protected] # lock to 9.4.0 until actions/setup-node#411 and npm/cli#4341 are fixed

- name: Install sha256sum and minisign
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
(echo; echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"') >> /home/runner/.bashrc
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew update
brew install coreutils minisign
- name: Get version number
id: version_step
run: |
Expand All @@ -60,6 +52,12 @@ jobs:

- name: Checksum and sign all artifacts
run: |
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"
(echo; echo 'eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"') >> /home/runner/.bashrc
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew update
brew install coreutils minisign
sha256sum --tag vrealize-developer-tools-$PKG_VERSION.vsix > vrealize-developer-tools-$PKG_VERSION.vsix.sha256
find *.tgz -type f -exec sha256sum --tag {} \; | sort > packages.sha256
Expand Down
2 changes: 1 addition & 1 deletion packages/node/vrdt-common/src/__tests__/container.mocks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* SPDX-License-Identifier: MIT
*/

import { AutoWire } from "../di/AutoWire"
import { AutoWire } from "../di/AutoWire";

Check failure on line 6 in packages/node/vrdt-common/src/__tests__/container.mocks.ts

View workflow job for this annotation

GitHub Actions / Build and Release

Delete `;`

@AutoWire
export class NoConstructor {}
Expand Down

0 comments on commit 3fe9d11

Please sign in to comment.