-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
172 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,65 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
tags: | ||
- '*' | ||
workflow_dispatch: | ||
inputs: | ||
tag: | ||
description: 'Tag to release' | ||
required: true | ||
|
||
jobs: | ||
goreleaser: | ||
name: Release Binaries | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Set up QEMU | ||
uses: docker/setup-qemu-action@v2 | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
|
||
# only run this step when the tag is not already created | ||
- if: startsWith(github.ref, 'refs/tags/') != 'true' && github.event.inputs.tag != '' | ||
name: Create and Push Tag | ||
run: |- | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "Divanshu Chauhan" | ||
tag=${{ github.event.inputs.tag }} # if triggered by workflow_dispatch | ||
if [ -z "$tag" ]; then | ||
tag=${GITHUB_REF#refs/tags/} | ||
fi | ||
git tag -f -a -m "$tag" "$tag" | ||
git push -f origin "$tag" | ||
- name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v3 | ||
with: | ||
version: latest | ||
args: release --rm-dist | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,87 @@ | ||
project_name: gigafeed | ||
release: | ||
replace_existing_draft: true | ||
header: | | ||
Welcome to this new release! | ||
footer: | | ||
Docker Images: | ||
`docker.io/divideprojects/{{ .ProjectName }}:latest` | ||
`ghcr.io/gigauserbot/{{ .ProjectName }}:latest` | ||
before: | ||
hooks: | ||
- go mod tidy | ||
- go mod download | ||
builds: | ||
- goos: | ||
- linux | ||
- windows | ||
- darwin | ||
goarch: | ||
- amd64 | ||
- arm64 | ||
mod_timestamp: '{{ .CommitTimestamp }}' | ||
flags: | ||
- -trimpath | ||
ldflags: | ||
- -s -w -X main.version={{.Version}} -X main.commit={{.Commit}} -X main.date={{ .CommitDate }} | ||
archives: | ||
- format: binary | ||
checksum: | ||
name_template: 'checksums.txt' | ||
snapshot: | ||
name_template: "{{ incpatch .Version }}-next" | ||
|
||
dockers: | ||
# amd64 only | ||
- goarch: amd64 | ||
dockerfile: goreleaser.Dockerfile | ||
use: buildx | ||
image_templates: | ||
- "docker.io/divideprojects/{{ .ProjectName }}:{{ .Tag }}-amd64" | ||
- "ghcr.io/gigauserbot/{{ .ProjectName }}:{{ .Tag }}-amd64" | ||
build_flag_templates: | ||
- "--platform=linux/amd64" | ||
- "--pull" | ||
- "--label=org.opencontainers.image.created={{.Date}}" | ||
- "--label=org.opencontainers.image.title={{ .ProjectName }}" | ||
- "--label=org.opencontainers.image.revision={{.FullCommit}}" | ||
- "--label=org.opencontainers.image.version={{.Version}}" | ||
extra_files: | ||
- changelog.json | ||
# arm64 only | ||
- goarch: arm64 | ||
dockerfile: goreleaser.Dockerfile | ||
use: buildx | ||
image_templates: | ||
- "docker.io/divideprojects/{{ .ProjectName }}:{{ .Tag }}-arm64v8" | ||
- "ghcr.io/gigauserbot/{{ .ProjectName }}:{{ .Tag }}-arm64v8" | ||
build_flag_templates: | ||
- "--platform=linux/arm64/v8" | ||
- "--pull" | ||
- "--label=org.opencontainers.image.created={{.Date}}" | ||
- "--label=org.opencontainers.image.title={{ .ProjectName }}" | ||
- "--label=org.opencontainers.image.revision={{.FullCommit}}" | ||
- "--label=org.opencontainers.image.version={{.Version}}" | ||
extra_files: | ||
- changelog.json | ||
|
||
docker_manifests: | ||
# docker hub | ||
- name_template: "docker.io/divideprojects/{{ .ProjectName }}:{{ .Version }}" | ||
image_templates: | ||
- "docker.io/divideprojects/{{ .ProjectName }}:{{ .Tag }}-amd64" | ||
- "docker.io/divideprojects/{{ .ProjectName }}:{{ .Tag }}-arm64v8" | ||
- name_template: "docker.io/divideprojects/{{ .ProjectName }}:latest" | ||
image_templates: | ||
- "docker.io/divideprojects/{{ .ProjectName }}:{{ .Tag }}-amd64" | ||
- "docker.io/divideprojects/{{ .ProjectName }}:{{ .Tag }}-arm64v8" | ||
|
||
# github container registry | ||
- name_template: "ghcr.io/gigauserbot/{{ .ProjectName }}:{{ .Version }}" | ||
image_templates: | ||
- "ghcr.io/gigauserbot/{{ .ProjectName }}:{{ .Tag }}-amd64" | ||
- "ghcr.io/gigauserbot/{{ .ProjectName }}:{{ .Tag }}-arm64v8" | ||
- name_template: "ghcr.io/gigauserbot/{{ .ProjectName }}:latest" | ||
image_templates: | ||
- "ghcr.io/gigauserbot/{{ .ProjectName }}:{{ .Tag }}-amd64" | ||
- "ghcr.io/gigauserbot/{{ .ProjectName }}:{{ .Tag }}-arm64v8" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
FROM gcr.io/distroless/static | ||
COPY gigafeed / | ||
CMD ["/gigafeed"] |