Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 2 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -771,6 +771,7 @@ jobs:
release-dashmate:
name: Release Dashmate packages
runs-on: ${{ matrix.os }}
needs: release-npm
strategy:
fail-fast: false
matrix:
Expand All @@ -795,7 +796,7 @@ jobs:
- name: Install macOS build deps
if: runner.os == 'macOS'
run: |
brew install llvm docker colima
brew install llvm docker colima coreutils
colima start
echo "/usr/local/opt/llvm/bin" >> $GITHUB_PATH

Expand All @@ -822,11 +823,6 @@ jobs:
restore-keys: |
${{ runner.os }}-yarn-unplugged-

# Workaround for lack of yarn 3 support in oclif
- name: Patch package-json
run: |
echo "$(jq '. |= .+ { "dependencies": {"debug": "^4.3.4", "lodash": "^4.17.21", "strip-ansi": "^6.0.1", "fs-extra": "^8.1" },}' package.json)" > package.json

- name: Install dependencies
run: yarn install
env:
Expand Down
2 changes: 1 addition & 1 deletion scripts/pack_dashmate.sh
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ ROOT_PATH=$(dirname "$DIR_PATH")
cd $ROOT_PATH/packages/dashmate || exit 1
yarn pack --install-if-needed
tar zxvf package.tgz -C .
cd package || exit 1
cd $ROOT_PATH/packages/dashmate/package || exit 1
cp $ROOT_PATH/yarn.lock ./yarn.lock
mkdir .yarn
echo "nodeLinker: node-modules" > .yarnrc.yml
Expand Down