mirror of
				https://github.com/go-acme/lego.git
				synced 2025-10-31 08:27:38 +02:00 
			
		
		
		
	chore: update release workflow (#2657)
This commit is contained in:
		
				
					committed by
					
						 GitHub
						GitHub
					
				
			
			
				
	
			
			
			
						parent
						
							621d9d0d0e
						
					
				
				
					commit
					7a6aa1110a
				
			
							
								
								
									
										14
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										14
									
								
								.github/workflows/release.yml
									
									
									
									
										vendored
									
									
								
							| @@ -5,6 +5,11 @@ on: | ||||
|     tags: | ||||
|       - v* | ||||
|  | ||||
| permissions: | ||||
|   # Allow the workflow to write attestations. | ||||
|   id-token: write | ||||
|   attestations: write | ||||
|  | ||||
| jobs: | ||||
|  | ||||
|   release: | ||||
| @@ -66,9 +71,16 @@ jobs: | ||||
|       - name: Run GoReleaser | ||||
|         uses: goreleaser/goreleaser-action@v6 | ||||
|         with: | ||||
|           version: v2.8.1 | ||||
|           version: v2.12.3 | ||||
|           args: release -p 1 --clean --timeout=90m | ||||
|         env: | ||||
|           GITHUB_TOKEN: ${{ secrets.GH_TOKEN_REPO }} | ||||
|           SNAPCRAFT_STORE_CREDENTIALS: ${{ secrets.SNAPCRAFT_STORE_CREDENTIALS }} | ||||
|           AUR_KEY: ${{ secrets.AUR_KEY }} | ||||
|  | ||||
|       - uses: actions/attest-build-provenance@v3 | ||||
|         with: | ||||
|           subject-checksums: ./dist/checksums.txt | ||||
|       - uses: actions/attest-build-provenance@v3 | ||||
|         with: | ||||
|           subject-checksums: ./dist/digests.txt | ||||
|   | ||||
							
								
								
									
										103
									
								
								.goreleaser.yml
									
									
									
									
									
								
							
							
						
						
									
										103
									
								
								.goreleaser.yml
									
									
									
									
									
								
							| @@ -42,6 +42,10 @@ builds: | ||||
|         goarch: 386 | ||||
|       - goos: openbsd | ||||
|         goarch: arm | ||||
|       # Deprecated in go1.25, Removed in go1.26 | ||||
|       # https://go.dev/doc/go1.25#windows | ||||
|       - goos: windows | ||||
|         goarch: arm | ||||
|  | ||||
| changelog: | ||||
|   sort: asc | ||||
| @@ -62,87 +66,28 @@ archives: | ||||
|       - LICENSE | ||||
|       - CHANGELOG.md | ||||
|  | ||||
| docker_manifests: | ||||
|   - name_template: 'goacme/lego:{{ .Tag }}' | ||||
|     image_templates: | ||||
|       - 'goacme/lego:{{ .Tag }}-amd64' | ||||
|       - 'goacme/lego:{{ .Tag }}-arm64' | ||||
|       - 'goacme/lego:{{ .Tag }}-armv7' | ||||
|   - name_template: 'goacme/lego:latest' | ||||
|     image_templates: | ||||
|       - 'goacme/lego:{{ .Tag }}-amd64' | ||||
|       - 'goacme/lego:{{ .Tag }}-arm64' | ||||
|       - 'goacme/lego:{{ .Tag }}-armv7' | ||||
|   - name_template: 'goacme/lego:v{{ .Major }}.{{ .Minor }}' | ||||
|     image_templates: | ||||
|       - 'goacme/lego:v{{ .Major }}.{{ .Minor }}-amd64' | ||||
|       - 'goacme/lego:v{{ .Major }}.{{ .Minor }}-arm64' | ||||
|       - 'goacme/lego:v{{ .Major }}.{{ .Minor }}-armv7' | ||||
|  | ||||
| dockers: | ||||
|   - use: buildx | ||||
|     goos: linux | ||||
|     goarch: amd64 | ||||
| dockers_v2: | ||||
|   - images: | ||||
|       - 'goacme/lego' | ||||
|     dockerfile: buildx.Dockerfile | ||||
|     image_templates: | ||||
|       - 'goacme/lego:latest-amd64' | ||||
|       - 'goacme/lego:{{ .Tag }}-amd64' | ||||
|       - 'goacme/lego:v{{ .Major }}.{{ .Minor }}-amd64' | ||||
|     build_flag_templates: | ||||
|       - '--pull' | ||||
|     platforms: | ||||
|       - linux/amd64 | ||||
|       - linux/arm64 | ||||
|       - linux/arm/v7 | ||||
|     tags: | ||||
|       - 'latest' | ||||
|       - '{{ .Tag }}' | ||||
|       - 'v{{ .Major }}.{{ .Minor }}' | ||||
|     labels: | ||||
|       # https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys | ||||
|       - '--label=org.opencontainers.image.title={{.ProjectName}}' | ||||
|       - '--label=org.opencontainers.image.description=Lets Encrypt/ACME client and library written in Go' | ||||
|       - '--label=org.opencontainers.image.source={{.GitURL}}' | ||||
|       - '--label=org.opencontainers.image.url={{.GitURL}}' | ||||
|       - '--label=org.opencontainers.image.documentation=https://go-acme.github.io/lego' | ||||
|       - '--label=org.opencontainers.image.created={{.Date}}' | ||||
|       - '--label=org.opencontainers.image.revision={{.FullCommit}}' | ||||
|       - '--label=org.opencontainers.image.version={{.Version}}' | ||||
|       - '--platform=linux/amd64' | ||||
|  | ||||
|   - use: buildx | ||||
|     goos: linux | ||||
|     goarch: arm64 | ||||
|     dockerfile: buildx.Dockerfile | ||||
|     image_templates: | ||||
|       - 'goacme/lego:latest-arm64' | ||||
|       - 'goacme/lego:{{ .Tag }}-arm64' | ||||
|       - 'goacme/lego:v{{ .Major }}.{{ .Minor }}-arm64' | ||||
|     build_flag_templates: | ||||
|       - '--pull' | ||||
|       # https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys | ||||
|       - '--label=org.opencontainers.image.title={{.ProjectName}}' | ||||
|       - '--label=org.opencontainers.image.description=Lets Encrypt/ACME client and library written in Go' | ||||
|       - '--label=org.opencontainers.image.source={{.GitURL}}' | ||||
|       - '--label=org.opencontainers.image.url={{.GitURL}}' | ||||
|       - '--label=org.opencontainers.image.documentation=https://go-acme.github.io/lego' | ||||
|       - '--label=org.opencontainers.image.created={{.Date}}' | ||||
|       - '--label=org.opencontainers.image.revision={{.FullCommit}}' | ||||
|       - '--label=org.opencontainers.image.version={{.Version}}' | ||||
|       - '--platform=linux/arm64' | ||||
|  | ||||
|   - use: buildx | ||||
|     goos: linux | ||||
|     goarch: arm | ||||
|     goarm: '7' | ||||
|     dockerfile: buildx.Dockerfile | ||||
|     image_templates: | ||||
|       - 'goacme/lego:latest-armv7' | ||||
|       - 'goacme/lego:{{ .Tag }}-armv7' | ||||
|       - 'goacme/lego:v{{ .Major }}.{{ .Minor }}-armv7' | ||||
|     build_flag_templates: | ||||
|       - '--pull' | ||||
|       # https://github.com/opencontainers/image-spec/blob/main/annotations.md#pre-defined-annotation-keys | ||||
|       - '--label=org.opencontainers.image.title={{.ProjectName}}' | ||||
|       - '--label=org.opencontainers.image.description=Lets Encrypt/ACME client and library written in Go' | ||||
|       - '--label=org.opencontainers.image.source={{.GitURL}}' | ||||
|       - '--label=org.opencontainers.image.url={{.GitURL}}' | ||||
|       - '--label=org.opencontainers.image.documentation=https://go-acme.github.io/lego' | ||||
|       - '--label=org.opencontainers.image.created={{.Date}}' | ||||
|       - '--label=org.opencontainers.image.revision={{.FullCommit}}' | ||||
|       - '--label=org.opencontainers.image.version={{.Version}}' | ||||
|       - '--platform=linux/arm/v7' | ||||
|       'org.opencontainers.image.title': '{{.ProjectName}}' | ||||
|       'org.opencontainers.image.description': 'Lets Encrypt/ACME client and library written in Go' | ||||
|       'org.opencontainers.image.source': '{{.GitURL}}' | ||||
|       'org.opencontainers.image.url': '{{.GitURL}}' | ||||
|       'org.opencontainers.image.documentation': 'https://go-acme.github.io/lego' | ||||
|       'org.opencontainers.image.created': '{{.Date}}' | ||||
|       'org.opencontainers.image.revision': '{{.FullCommit}}' | ||||
|       'org.opencontainers.image.version': '{{.Version}}' | ||||
|  | ||||
| snapcrafts: | ||||
|   - name_template: "{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" | ||||
|   | ||||
| @@ -1,10 +1,12 @@ | ||||
| # syntax=docker/dockerfile:1.4 | ||||
| FROM alpine:3 | ||||
|  | ||||
| ARG TARGETPLATFORM | ||||
|  | ||||
| RUN apk --no-cache --no-progress add git ca-certificates tzdata \ | ||||
|     && rm -rf /var/cache/apk/* | ||||
|  | ||||
| COPY lego / | ||||
| COPY $TARGETPLATFORM/lego / | ||||
|  | ||||
| ENTRYPOINT ["/lego"] | ||||
| EXPOSE 80 | ||||
|   | ||||
		Reference in New Issue
	
	Block a user