diff --git a/.forgejo/workflows/build.yml b/.forgejo/workflows/build.yml index 6483693..c45a9e0 100644 --- a/.forgejo/workflows/build.yml +++ b/.forgejo/workflows/build.yml @@ -88,10 +88,10 @@ jobs: if: github.ref == 'refs/heads/main' || github.ref == 'refs/heads/master' run: | docker run --rm ${{ env.IMAGE_NAME }}:${{ steps.versions.outputs.tag }} sh -lc \ - 'talosctl version --client && talhelper --version && sops --version' + 'talosctl version --client && talhelper version && sops --version' - name: "Smoke test (branch: run locally loaded image)" if: github.ref != 'refs/heads/main' && github.ref != 'refs/heads/master' run: | docker run --rm ${{ env.IMAGE_NAME }}:${{ steps.versions.outputs.tag }} sh -lc \ - 'talosctl version --client && talhelper --version && sops --version' + 'talosctl version --client && talhelper version && sops --version' diff --git a/Dockerfile b/Dockerfile index 618c726..db785d6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -125,4 +125,4 @@ RUN set -eux; \ ENV PAGER=cat # Print versions by default so users can see what's inside quickly. -CMD talosctl version --client && talhelper --version && sops --version +CMD talosctl version --client && talhelper version && sops --version