Skip to content

Commit

Permalink
split image workflow from build (ncabatoff#299)
Browse files Browse the repository at this point in the history
Various GHA improvements.
  • Loading branch information
ncabatoff committed Apr 28, 2024
1 parent f6ae132 commit 6efab57
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 48 deletions.
53 changes: 5 additions & 48 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,55 +8,12 @@ jobs:
with:
go-version: '1.22'

- uses: actions/checkout@master
- uses: actions/checkout@v4
with:
fetch-depth: 0

- run: make style
- run: make vet
- run: make test
- run: make build
- run: make integ

image:
runs-on: ubuntu-latest
steps:
- name: setup buildx
id: buildx
uses: docker/setup-buildx-action@v1
with:
version: latest

- name: login to docker hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
with:
registry: docker.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- uses: actions/checkout@master

- name: generate docker metadata
id: meta
uses: docker/metadata-action@v3
with:
context: .
# list of Docker images to use as base name for tags
images: |
ncabatoff/process-exporter
# generate Docker tags based on the following events/attributes
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=sha
- name: build docker image and, if not PR, push
uses: docker/build-push-action@v2
with:
file: ./Dockerfile
context: .
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
- run: make BRANCH=${{ github.head_ref || github.ref_name }} build
- run: make integ
51 changes: 51 additions & 0 deletions .github/workflows/image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,51 @@
on:
push:
branches: [master]
pull_request:

jobs:
image:
runs-on: ubuntu-latest
steps:
- name: setup buildx
id: buildx
uses: docker/setup-buildx-action@v3
with:
version: latest

- name: login to docker hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v1
with:
registry: docker.io
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: generate docker metadata
id: meta
uses: docker/metadata-action@v5
with:
# list of Docker images to use as base name for tags
images: |
ncabatoff/process-exporter
# generate Docker tags based on the following events/attributes
tags: |
type=schedule
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=sha
- name: build docker image and, if not PR, push
uses: docker/build-push-action@v5
with:
file: ./Dockerfile
context: .
platforms: linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

0 comments on commit 6efab57

Please sign in to comment.