Skip to content

Commit

Permalink
fix: windows bugs
Browse files Browse the repository at this point in the history
  • Loading branch information
mrgrain committed Apr 28, 2024
1 parent f215392 commit 1f42cfc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion projenrc/rosetta.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ export class RosettaPeerDependency extends Component {
project.addPeerDeps(constraint);

project.github?.tryFindWorkflow('build')?.addJob('rosetta-compat', {
runsOn: ['ubuntu-latest'],
runsOn: ['${{ matrix.os }}'],
permissions: {},
env: {
CI: 'true',
Expand All @@ -39,6 +39,7 @@ export class RosettaPeerDependency extends Component {
matrix: {
domain: {
rosetta: this.calculateMinimalVersions(options.supportedVersions),
os: ['ubuntu-latest', 'windows-latest'],
},
},
},
Expand Down

0 comments on commit 1f42cfc

Please sign in to comment.