diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 0c0a19b..bbc3152 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -34,6 +34,10 @@ concurrency: permissions: contents: read +env: + FORCE_COLOR: "1" + CLICOLOR_FORCE: "1" + jobs: build: name: Build sdist and wheels diff --git a/.github/workflows/docker.yaml b/.github/workflows/docker.yaml index f151c27..fef3f5e 100644 --- a/.github/workflows/docker.yaml +++ b/.github/workflows/docker.yaml @@ -28,9 +28,6 @@ on: type: string required: true -env: - IMAGE_REGISTRY: ghcr.io - concurrency: group: "${{ github.workflow }}-${{ github.ref }}" cancel-in-progress: ${{ github.event_name == 'pull_request' }} @@ -41,6 +38,11 @@ permissions: id-token: write attestations: write +env: + IMAGE_REGISTRY: "ghcr.io" + FORCE_COLOR: "1" + CLICOLOR_FORCE: "1" + jobs: build-and-publish: name: Build and Publish Docker Images for ${{ matrix.name }} diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml index 4d81741..1781175 100644 --- a/.github/workflows/lint.yaml +++ b/.github/workflows/lint.yaml @@ -13,6 +13,10 @@ concurrency: permissions: contents: read +env: + FORCE_COLOR: "1" + CLICOLOR_FORCE: "1" + jobs: lint: runs-on: ubuntu-latest