diff --git a/.github/workflows/publish-schemas.yml b/.github/workflows/publish-schemas.yml index 61ed1418c8..97e25bdafa 100644 --- a/.github/workflows/publish-schemas.yml +++ b/.github/workflows/publish-schemas.yml @@ -18,6 +18,11 @@ jobs: - name: Install Redocly uses: actions/setup-node@v4 - run: npm i -g @redocly/cli@latest + - name: Install yq + run: | + sudo wget https://github.com/mikefarah/yq/releases/latest/download/yq_linux_amd64 -O /usr/local/bin/yq + sudo chmod +x /usr/local/bin/yq + yq --version - name: Run Script shell: bash run: | @@ -39,4 +44,4 @@ jobs: branch: master commit_user_name: meshery commit_user_email: ci@meshery.io - commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> \ No newline at end of file + commit_author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com>