A container registry that uses the AT Protocol for manifest storage and S3 for blob storage.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix workflows

+12 -1
+6 -1
.tangled/workflows/lint.yaml
··· 9 9 architecture: amd64 10 10 11 11 steps: 12 + - name: install node 13 + command: | 14 + apt-get update && \ 15 + apt-get install -y --no-install-recommends nodejs npm && \ 16 + rm -rf /var/lib/apt/lists/* 17 + 12 18 - name: Download and Generate 13 19 environment: 14 20 CGO_ENABLED: 1 15 21 command: | 16 22 go mod download 17 23 go install github.com/golangci/golangci-lint/v2/cmd/golangci-lint@v2.7.2 18 - go generate ./... 19 24 20 25 - name: Run Linter 21 26 environment:
+6
.tangled/workflows/tests.yml
··· 9 9 architecture: amd64 10 10 11 11 steps: 12 + - name: install node 13 + command: | 14 + apt-get update && \ 15 + apt-get install -y --no-install-recommends nodejs npm && \ 16 + rm -rf /var/lib/apt/lists/* 17 + 12 18 - name: Download and Generate 13 19 environment: 14 20 CGO_ENABLED: 1