Skip to content

Commit

Permalink
Fix failing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
harmless-tech committed Jul 22, 2023
1 parent dc8d0ce commit 4707e8c
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 9 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,15 +62,14 @@ jobs:
- run: "[[ \"$(cargo prebuilt --version)\" != \"\" ]]"
- uses: ./
with:
prebuilt-version: 0.5.0
- run: "[[ \"$(cargo prebuilt --version)\" == \"0.5.0\" ]]"
prebuilt-version: 0.6.0
- run: "[[ \"$(cargo prebuilt --version)\" == \"0.6.0\" ]]"
test-linux-tools: # make sure the action works on a clean machine without building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: ./
with:
out: false
pkgs: just,rtx-cli@1.34.0,bacon@2.11.0
- run: just --version
- run: which just
Expand All @@ -82,7 +81,6 @@ jobs:
- uses: actions/checkout@v3
- uses: ./
with:
out: false
pkgs: just,rtx-cli@1.34.0,bacon@2.11.0
- run: just --version
- run: which just
Expand All @@ -94,7 +92,6 @@ jobs:
- uses: actions/checkout@v3
- uses: ./
with:
out: false
pkgs: just,bacon@2.11.0
- shell: bash
run: just --version
Expand All @@ -107,7 +104,6 @@ jobs:
- uses: actions/checkout@v3
- uses: ./
with:
out: false
pkgs: just@1.14.0
- run: "[[ \"$(just --version)\" == \"just 1.14.0\" ]]"
- uses: ./
Expand Down
2 changes: 1 addition & 1 deletion dist/index.js

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

2 changes: 1 addition & 1 deletion dist/index.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ async function run(): Promise<void> {
if (out === 'true') args.push('--out')
if (color === 'true') args.push('--color')
if (color === 'false') args.push('--no-color')
args.push(`'${pkgs}'`)
args.push(pkgs)

const output = await exec.getExecOutput('cargo-prebuilt', args)
core.setOutput('out', output)
Expand Down

0 comments on commit 4707e8c

Please sign in to comment.