-
Notifications
You must be signed in to change notification settings - Fork 22
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
8 changed files
with
245 additions
and
102 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 |
---|---|---|
|
@@ -27,3 +27,7 @@ ignore.config.json | |
|
||
# output directory | ||
out/ | ||
|
||
dist/ | ||
|
||
dist/ |
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: giga | ||
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 |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# Build Stage: Build bot using the alpine image, also install doppler in it | ||
FROM golang:latest AS builder | ||
FROM golang:1.19 AS builder | ||
RUN apt-get update && apt-get upgrade -y && apt-get install build-essential -y | ||
WORKDIR /app | ||
COPY . . | ||
RUN GOOS=`go env GOHOSTOS` GOARCH=`go env GOHOSTARCH` go build -o out/GigaUserbot -ldflags="-w -s" . | ||
|
||
# Run Stage: Run bot using the bot and doppler binary copied from build stage | ||
FROM golang:latest | ||
FROM golang:1.19 | ||
COPY --from=builder /app/out/GigaUserbot /app/GigaUserbot | ||
COPY changelog.json /app/changelog.json | ||
COPY --from=builder /app/changelog.json /app/changelog.json | ||
CMD ["/app/GigaUserbot"] |
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
Oops, something went wrong.