diff --git a/.github/workflows/test-retest-action.yaml b/.github/workflows/test-retest-action.yaml index 3bf15c755..73cbef9a2 100644 --- a/.github/workflows/test-retest-action.yaml +++ b/.github/workflows/test-retest-action.yaml @@ -11,13 +11,7 @@ jobs: steps: - uses: actions/checkout@v2 - - name: Set up Go - uses: actions/setup-go@v2 - with: - go-version: 1.16 - - - name: Enter retest directory - run: cd actions/retest - - - name: Build - run: go build -v ./... + - name: Docker build + # Run cd to avoid loading complete cephcsi directory in docker context + # while building retest image. + run: cd actions/retest && docker build -t retest .