mirror of
https://github.com/kha7iq/pingme.git
synced 2025-05-31 22:10:12 -07:00
fix: add support for building docker image
This commit is contained in:
parent
40eb18442c
commit
76a8a00329
62
.github/workflows/goreleaser.yml
vendored
62
.github/workflows/goreleaser.yml
vendored
@ -1,29 +1,71 @@
|
|||||||
name: goreleaser
|
name: build
|
||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
||||||
- '*'
|
- 'v*'
|
||||||
|
pull_request:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
goreleaser:
|
release-pingme:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
env:
|
||||||
|
DOCKER_CLI_EXPERIMENTAL: "enabled"
|
||||||
steps:
|
steps:
|
||||||
-
|
-
|
||||||
name: Checkout
|
name: Checkout
|
||||||
uses: actions/checkout@v2
|
uses: actions/checkout@v2.3.4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
-
|
||||||
|
name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v1
|
||||||
|
-
|
||||||
|
name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v1
|
||||||
-
|
-
|
||||||
name: Set up Go
|
name: Set up Go
|
||||||
uses: actions/setup-go@v2
|
uses: actions/setup-go@v2
|
||||||
with:
|
with:
|
||||||
go-version: 1.16
|
go-version: '1.16'
|
||||||
-
|
-
|
||||||
name: Run GoReleaser
|
name: Cache Go modules
|
||||||
uses: goreleaser/goreleaser-action@v2
|
uses: actions/cache@v2.1.5
|
||||||
with:
|
with:
|
||||||
version: latest
|
path: ~/go/pkg/mod
|
||||||
args: release --rm-dist
|
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
|
||||||
|
restore-keys: |
|
||||||
|
${{ runner.os }}-go-
|
||||||
|
-
|
||||||
|
name: Check
|
||||||
|
run: |
|
||||||
|
./goreleaser check
|
||||||
|
-
|
||||||
|
name: Diff
|
||||||
|
run: git diff
|
||||||
|
-
|
||||||
|
name: Docker Login
|
||||||
|
if: success() && startsWith(github.ref, 'refs/tags/v')
|
||||||
env:
|
env:
|
||||||
GITHUB_TOKEN: ${{ secrets.GO_RELEASER_GITHUB_TOKEN }}
|
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GO_RELEASER_GITHUB_TOKEN }}
|
||||||
|
run: |
|
||||||
|
echo "${DOCKER_PASSWORD}" | docker login --username "${DOCKER_USERNAME}" --password-stdin
|
||||||
|
echo "${GITHUB_TOKEN}" | docker login ghcr.io --username $GITHUB_ACTOR --password-stdin
|
||||||
|
-
|
||||||
|
name: GoReleaser
|
||||||
|
if: success()
|
||||||
|
env:
|
||||||
|
GITHUB_TOKEN: ${{ secrets.GO_RELEASER_GITHUB_TOKEN }}
|
||||||
|
run: |
|
||||||
|
if [[ $GITHUB_REF == refs/tags/v* ]]; then
|
||||||
|
./goreleaser
|
||||||
|
elif [[ $GITHUB_REF == refs/heads/master ]]; then
|
||||||
|
./goreleaser --snapshot
|
||||||
|
fi
|
||||||
|
-
|
||||||
|
name: Clear
|
||||||
|
if: always() && startsWith(github.ref, 'refs/tags/v')
|
||||||
|
run: |
|
||||||
|
rm -f ${HOME}/.docker/config.json
|
@ -66,4 +66,73 @@ nfpms:
|
|||||||
- deb
|
- deb
|
||||||
- rpm
|
- rpm
|
||||||
dependencies:
|
dependencies:
|
||||||
- git
|
- git
|
||||||
|
|
||||||
|
# snapcrafts:
|
||||||
|
# - name_template: '{{ .ProjectName }}_{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}'
|
||||||
|
# summary: PingMe is a CLI tool which provides the ability to send messages
|
||||||
|
# description: |
|
||||||
|
# PingMe is a CLI tool which provides the ability to send messages
|
||||||
|
# or alerts to multiple messaging platforms.
|
||||||
|
# grade: stable
|
||||||
|
# confinement: classic
|
||||||
|
# publish: false
|
||||||
|
|
||||||
|
scoop:
|
||||||
|
bucket:
|
||||||
|
owner: kha7iq
|
||||||
|
name: scoop-bucket
|
||||||
|
homepage: https://pingme.lmno.pk
|
||||||
|
description: Deliver Go binaries as fast and easily as possible
|
||||||
|
license: MIT
|
||||||
|
|
||||||
|
|
||||||
|
dockers:
|
||||||
|
- image_templates:
|
||||||
|
- 'khaliq/pingme:{{ .Tag }}-amd64'
|
||||||
|
- 'ghcr.io/kha7iq/pingme:{{ .Tag }}-amd64'
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
use_buildx: true
|
||||||
|
build_flag_templates:
|
||||||
|
- "--pull"
|
||||||
|
- "--label=org.opencontainers.image.created={{.Date}}"
|
||||||
|
- "--label=org.opencontainers.image.name={{.ProjectName}}"
|
||||||
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
||||||
|
- "--label=org.opencontainers.image.version={{.Version}}"
|
||||||
|
- "--label=org.opencontainers.image.source={{.GitURL}}"
|
||||||
|
- "--platform=linux/amd64"
|
||||||
|
extra_files:
|
||||||
|
- scripts/entrypoint.sh
|
||||||
|
- image_templates:
|
||||||
|
- 'khaliq/pingme:{{ .Tag }}-arm64'
|
||||||
|
- 'ghcr.io/kha7iq/pingme:{{ .Tag }}-arm64'
|
||||||
|
dockerfile: Dockerfile
|
||||||
|
use_buildx: true
|
||||||
|
build_flag_templates:
|
||||||
|
- "--pull"
|
||||||
|
- "--label=org.opencontainers.image.created={{.Date}}"
|
||||||
|
- "--label=org.opencontainers.image.name={{.ProjectName}}"
|
||||||
|
- "--label=org.opencontainers.image.revision={{.FullCommit}}"
|
||||||
|
- "--label=org.opencontainers.image.version={{.Version}}"
|
||||||
|
- "--label=org.opencontainers.image.source={{.GitURL}}"
|
||||||
|
- "--platform=linux/arm64"
|
||||||
|
goarch: arm64
|
||||||
|
extra_files:
|
||||||
|
- scripts/entrypoint.sh
|
||||||
|
docker_manifests:
|
||||||
|
- name_template: 'khaliq/pingme:{{ .Tag }}'
|
||||||
|
image_templates:
|
||||||
|
- 'khaliq/pingme:{{ .Tag }}-amd64'
|
||||||
|
- 'khaliq/pingme:{{ .Tag }}-arm64'
|
||||||
|
- name_template: 'ghcr.io/kha7iq/pingme:{{ .Tag }}'
|
||||||
|
image_templates:
|
||||||
|
- 'ghcr.io/kha7iq/pingme:{{ .Tag }}-amd64'
|
||||||
|
- 'ghcr.io/kha7iq/pingme:{{ .Tag }}-arm64'
|
||||||
|
- name_template: 'khaliq/pingme:latest'
|
||||||
|
image_templates:
|
||||||
|
- 'khaliq/pingme:{{ .Tag }}-amd64'
|
||||||
|
- 'khaliq/pingme:{{ .Tag }}-arm64'
|
||||||
|
- name_template: 'ghcr.io/kha7iq/pingme:latest'
|
||||||
|
image_templates:
|
||||||
|
- 'ghcr.io/kha7iq/pingme:{{ .Tag }}-amd64'
|
||||||
|
- 'ghcr.io/kha7iq/:{{ .Tag }}-arm64'
|
Loading…
x
Reference in New Issue
Block a user