diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 00c42da42f..976b20664d 100755 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -13,7 +13,13 @@ jobs: container: registry.suse.com/bci/bci-base:latest steps: - name: install dependencies - run: zypper install -y docker jq git + run: zypper --non-interactive install docker jq git make + - name: install gh + run: | + mkdir -p /tmp/gh + curl -fsL https://github.com/cli/cli/releases/download/v2.63.2/gh_2.63.2_linux_amd64.tar.gz | tar xvzf - --strip-components=1 -C /tmp/gh + mv /tmp/gh/bin/gh /usr/bin/gh + chmod +x /usr/bin/gh - name: Checkout code uses: actions/checkout@v4 - name: Git safe directory