commit
988f536a35
5 changed files with 165 additions and 0 deletions
26
.github/workflows/build.yml
vendored
Normal file
26
.github/workflows/build.yml
vendored
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
name: Docker build
|
||||||
|
on:
|
||||||
|
pull_request:
|
||||||
|
branches: [master]
|
||||||
|
paths-ignore:
|
||||||
|
- .github/workflows/buildx-branch.yml
|
||||||
|
- .github/workflows/buildx-latest.yml
|
||||||
|
- .github/workflows/buildx-release.yml
|
||||||
|
- .github/workflows/dockerhub-description.yml
|
||||||
|
- .github/workflows/rust.yml
|
||||||
|
- extra
|
||||||
|
- _config.yml
|
||||||
|
- .gitignore
|
||||||
|
- .rustfmt.toml
|
||||||
|
- .gitignore
|
||||||
|
- example.json
|
||||||
|
- LICENSE
|
||||||
|
- README.md
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Build image
|
||||||
|
run: docker build .
|
42
.github/workflows/buildx-branch.yml
vendored
Normal file
42
.github/workflows/buildx-branch.yml
vendored
Normal file
|
@ -0,0 +1,42 @@
|
||||||
|
name: Buildx branch
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- '*'
|
||||||
|
- '*/*'
|
||||||
|
- '!master'
|
||||||
|
paths-ignore:
|
||||||
|
- .github/workflows/build.yml
|
||||||
|
- .github/workflows/buildx-latest.yml
|
||||||
|
- .github/workflows/buildx-release.yml
|
||||||
|
- .github/workflows/dockerhub-description.yml
|
||||||
|
- .github/workflows/rust.yml
|
||||||
|
- extra
|
||||||
|
- _config.yml
|
||||||
|
- .gitignore
|
||||||
|
- .rustfmt.toml
|
||||||
|
- .gitignore
|
||||||
|
- example.json
|
||||||
|
- LICENSE
|
||||||
|
- README.md
|
||||||
|
jobs:
|
||||||
|
buildx:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Buildx setup
|
||||||
|
uses: crazy-max/ghaction-docker-buildx@v1
|
||||||
|
- name: Dockerhub login
|
||||||
|
run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u mindflavor --password-stdin 2>&1
|
||||||
|
- name: Run Buildx
|
||||||
|
run: |
|
||||||
|
docker buildx build \
|
||||||
|
--progress plain \
|
||||||
|
--platform=linux/amd64,linux/386 \
|
||||||
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
||||||
|
--build-arg COMMIT=`git rev-parse --short HEAD` \
|
||||||
|
--build-arg VERSION=${GITHUB_REF##*/} \
|
||||||
|
-t mindflavor/prometheus-wireguard-exporter:${GITHUB_REF##*/} \
|
||||||
|
--push \
|
||||||
|
.
|
||||||
|
- run: curl -X POST https://hooks.microbadger.com/images/mindflavor/prometheus-wireguard-exporter/TODO || exit 0
|
39
.github/workflows/buildx-latest.yml
vendored
Normal file
39
.github/workflows/buildx-latest.yml
vendored
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
name: Buildx latest
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
paths-ignore:
|
||||||
|
- .github/workflows/build.yml
|
||||||
|
- .github/workflows/buildx-branch.yml
|
||||||
|
- .github/workflows/buildx-release.yml
|
||||||
|
- .github/workflows/dockerhub-description.yml
|
||||||
|
- .github/workflows/rust.yml
|
||||||
|
- extra
|
||||||
|
- _config.yml
|
||||||
|
- .gitignore
|
||||||
|
- .rustfmt.toml
|
||||||
|
- .gitignore
|
||||||
|
- example.json
|
||||||
|
- LICENSE
|
||||||
|
- README.md
|
||||||
|
jobs:
|
||||||
|
buildx:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Buildx setup
|
||||||
|
uses: crazy-max/ghaction-docker-buildx@v1
|
||||||
|
- name: Dockerhub login
|
||||||
|
run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u mindflavor --password-stdin 2>&1
|
||||||
|
- name: Run Buildx
|
||||||
|
run: |
|
||||||
|
docker buildx build \
|
||||||
|
--progress plain \
|
||||||
|
--platform=linux/amd64,linux/386 \
|
||||||
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
||||||
|
--build-arg COMMIT=`git rev-parse --short HEAD` \
|
||||||
|
--build-arg VERSION=latest \
|
||||||
|
-t mindflavor/prometheus-wireguard-exporter:latest \
|
||||||
|
--push \
|
||||||
|
.
|
||||||
|
- run: curl -X POST https://hooks.microbadger.com/images/mindflavor/prometheus-wireguard-exporter/TODO || exit 0
|
39
.github/workflows/buildx-release.yml
vendored
Normal file
39
.github/workflows/buildx-release.yml
vendored
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
name: Buildx release
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
paths-ignore:
|
||||||
|
- .github/workflows/build.yml
|
||||||
|
- .github/workflows/buildx-branch.yml
|
||||||
|
- .github/workflows/buildx-latest.yml
|
||||||
|
- .github/workflows/dockerhub-description.yml
|
||||||
|
- .github/workflows/rust.yml
|
||||||
|
- extra
|
||||||
|
- _config.yml
|
||||||
|
- .gitignore
|
||||||
|
- .rustfmt.toml
|
||||||
|
- .gitignore
|
||||||
|
- example.json
|
||||||
|
- LICENSE
|
||||||
|
- README.md
|
||||||
|
jobs:
|
||||||
|
buildx:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@v2
|
||||||
|
- name: Buildx setup
|
||||||
|
uses: crazy-max/ghaction-docker-buildx@v1
|
||||||
|
- name: Dockerhub login
|
||||||
|
run: echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login -u mindflavor --password-stdin 2>&1
|
||||||
|
- name: Run Buildx
|
||||||
|
run: |
|
||||||
|
docker buildx build \
|
||||||
|
--progress plain \
|
||||||
|
--platform=linux/amd64,linux/386 \
|
||||||
|
--build-arg BUILD_DATE=`date -u +"%Y-%m-%dT%H:%M:%SZ"` \
|
||||||
|
--build-arg COMMIT=`git rev-parse --short HEAD` \
|
||||||
|
--build-arg VERSION=${GITHUB_REF##*/} \
|
||||||
|
-t mindflavor/prometheus-wireguard-exporter:${GITHUB_REF##*/} \
|
||||||
|
--push \
|
||||||
|
.
|
||||||
|
- run: curl -X POST https://hooks.microbadger.com/images/mindflavor/prometheus-wireguard-exporter/TODO || exit 0
|
19
.github/workflows/dockerhub-description.yml
vendored
Normal file
19
.github/workflows/dockerhub-description.yml
vendored
Normal file
|
@ -0,0 +1,19 @@
|
||||||
|
name: Docker Hub description
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches: [master]
|
||||||
|
paths:
|
||||||
|
- README.md
|
||||||
|
- .github/workflows/dockerhub-description.yml
|
||||||
|
jobs:
|
||||||
|
dockerHubDescription:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Checkout
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Docker Hub Description
|
||||||
|
uses: peter-evans/dockerhub-description@v2.1.0
|
||||||
|
env:
|
||||||
|
DOCKERHUB_USERNAME: mindflavor
|
||||||
|
DOCKERHUB_PASSWORD: ${{ secrets.DOCKERHUB_PASSWORD }}
|
||||||
|
DOCKERHUB_REPOSITORY: mindflavor/prometheus-wireguard-exporter
|
Loading…
Reference in a new issue