Skip to content

Commit

Permalink
Fix multiarq build (#240)
Browse files Browse the repository at this point in the history
* 🔧 (extension-attach-artifact-release.yml): use matrix.os value for runs-on field to allow flexibility in choosing operating system for the workflow job.

* 🔧 (pro-extension-test.yml): make the workflow run on the specified operating system defined in the matrix configuration for flexibility and customization

* 🔥 (DS_Store): remove .DS_Store file from the repository to avoid unnecessary clutter and prevent accidental commits of binary files
  • Loading branch information
jandroav authored Aug 9, 2024
1 parent 2861ce7 commit 71b5de5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
Binary file removed .DS_Store
Binary file not shown.
2 changes: 1 addition & 1 deletion .github/workflows/pro-extension-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ jobs:
matrix:
os: ${{fromJson(inputs.os || '["ubuntu-latest"]')}}
name: Build & Package - ${{ matrix.os }}
runs-on: ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
with:
Expand Down

0 comments on commit 71b5de5

Please sign in to comment.