-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from Felixoid/relocating
Moving the project to another scope
- Loading branch information
Showing
13 changed files
with
311 additions
and
223 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,47 @@ | ||
name: Upload Docker images to ghcr.io | ||
on: | ||
release: | ||
types: [published] | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: 'Git tag to push the image' | ||
required: true | ||
type: string | ||
jobs: | ||
docker: | ||
name: Build image | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ inputs.ref }} | ||
- name: Docker meta | ||
id: meta | ||
uses: docker/metadata-action@v5 | ||
with: | ||
context: ${{ inputs.ref && 'git' || 'workflow' }} | ||
images: ghcr.io/${{ github.repository }} | ||
# create latest tag for branch events | ||
flavor: | | ||
latest=${{ inputs.ref && 'false' || 'auto' }} | ||
tags: | | ||
type=semver,pattern={{version}},value=${{inputs.ref}} | ||
type=semver,pattern={{major}}.{{minor}},value=${{inputs.ref}} | ||
type=semver,pattern={{major}}.{{minor}}.{{patch}},value=${{inputs.ref}} | ||
- name: Login to ghcr.io | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Build and push | ||
id: docker_build | ||
uses: docker/build-push-action@v5 | ||
with: | ||
# push for non-pr events | ||
push: ${{ github.event_name != 'pull_request' }} | ||
context: . | ||
tags: ${{ steps.meta.outputs.tags }} | ||
labels: ${{ steps.meta.outputs.labels }} |
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 |
---|---|---|
@@ -1,80 +1,51 @@ | ||
--- | ||
name: Upload Packages to new release | ||
|
||
on: | ||
'on': | ||
release: | ||
types: | ||
- published | ||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: 'Git tag to push the image' | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
|
||
container: | ||
image: innogames/graphite-ch-optimizer:builder | ||
|
||
outputs: | ||
deb: ${{ steps.build.outputs.deb }} | ||
rpm: ${{ steps.build.outputs.rpm }} | ||
sha256sum: ${{ steps.build.outputs.sha256sum }} | ||
md5sum: ${{ steps.build.outputs.md5sum }} | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/checkout@v4 | ||
name: Checkout | ||
with: | ||
# Otherwise there's a risk to not get latest tag | ||
# We hope, that the current commit at | ||
# least 50 commits close to the latest release | ||
fetch-depth: 50 | ||
# least 100 commits close to the latest release | ||
fetch-depth: 100 | ||
fetch-tags: ${{ inputs.ref != '' }} | ||
ref: ${{ inputs.ref }} | ||
- name: Set up Go 1 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: ^1 | ||
- name: Build packages | ||
id: build | ||
run: | | ||
# Checkout action doesn't fetch tags | ||
git fetch --tags | ||
go install github.com/goreleaser/nfpm/v2/cmd/nfpm@v2.40.0 | ||
make -e CGO_ENABLED=0 packages | ||
make github_artifact | ||
- name: Upload rpm | ||
id: upload-rpm | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ASSET: ${{ steps.build.outputs.rpm }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: artifact/${{ env.ASSET }} | ||
asset_name: ${{ env.ASSET }} | ||
asset_content_type: application/octet-stream | ||
- name: Upload sha256sum | ||
id: upload-sha256sum | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ASSET: ${{ steps.build.outputs.sha256sum }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: artifact/${{ env.ASSET }} | ||
asset_name: ${{ env.ASSET }} | ||
asset_content_type: application/octet-stream | ||
- name: Upload md5sum | ||
id: upload-md5sum | ||
uses: actions/upload-release-asset@v1 | ||
- name: Upload release assets | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ASSET: ${{ steps.build.outputs.md5sum }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: artifact/${{ env.ASSET }} | ||
asset_name: ${{ env.ASSET }} | ||
asset_content_type: application/octet-stream | ||
- name: Upload deb | ||
id: upload-deb | ||
uses: actions/upload-release-asset@v1 | ||
run: | | ||
TAG="${{ inputs.ref && inputs.ref || github.event.release.tag_name }}" | ||
gh release upload --clobber --repo ${{ github.repository }} "$TAG" \ | ||
out/*.deb out/*.rpm out/*sum | ||
- name: Upload packages to packagecloud.com | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
ASSET: ${{ steps.build.outputs.deb }} | ||
with: | ||
upload_url: ${{ github.event.release.upload_url }} | ||
asset_path: artifact/${{ env.ASSET }} | ||
asset_name: ${{ env.ASSET }} | ||
asset_content_type: application/octet-stream | ||
PACKAGECLOUD_TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }} | ||
run: | | ||
go install github.com/mlafeldt/pkgcloud/cmd/pkgcloud-push@e79e9efc | ||
make packagecloud-stable |
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,3 +1,3 @@ | ||
graphite-ch-optimizer | ||
build/ | ||
out/ | ||
artifact/ |
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,28 @@ | ||
# | ||
# Image which contains the binary artefacts | ||
# | ||
FROM golang:alpine AS builder | ||
|
||
ENV GOPATH=/go | ||
|
||
RUN apk add make git --no-cache | ||
|
||
WORKDIR /go/src/github.com/go-graphite/graphite-ch-optimizer | ||
COPY . . | ||
RUN make -e CGO_ENABLED=0 build | ||
|
||
# | ||
# Application image | ||
# | ||
FROM alpine:latest | ||
|
||
RUN apk --no-cache add ca-certificates tzdata && mkdir /graphite-ch-optimizer | ||
|
||
WORKDIR /graphite-ch-optimizer | ||
|
||
COPY --from=builder \ | ||
/go/src/github.com/go-graphite/graphite-ch-optimizer/graphite-ch-optimizer \ | ||
/go/src/github.com/go-graphite/graphite-ch-optimizer/LICENSE \ | ||
. | ||
|
||
ENTRYPOINT ["./graphite-ch-optimizer"] |
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.