Skip to content

Commit

Permalink
[CI] Fix yum install with -y
Browse files Browse the repository at this point in the history
Signed-off-by: Yi Huang <yi@secondstate.io>
  • Loading branch information
0yi0 committed May 23, 2024
1 parent 65dcf83 commit 5b7a8de
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ jobs:
path: build/WasmEdge-${{ needs.create_release.outputs.version }}-Linux.tar.gz
- name: Install gh on manylinux
run: |
type -p yum-config-manager >/dev/null || yum install yum-utils
type -p yum-config-manager >/dev/null || yum install -y yum-utils
yum-config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo
yum install -y gh
- name: Upload ${{ matrix.name }} tar.gz package
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reusable-build-on-manylinux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
- name: Install gh on manylinux
if: ${{ inputs.release }}
run: |
type -p yum-config-manager >/dev/null || yum install yum-utils
type -p yum-config-manager >/dev/null || yum install -y yum-utils
yum-config-manager --add-repo https://cli.github.com/packages/rpm/gh-cli.repo
yum install -y gh
- name: Upload rpm package
Expand Down

0 comments on commit 5b7a8de

Please sign in to comment.