8f44776745
* Dockerfile: add test stage with cargo test entrypoint * Workflows: merge all in docker.yml - Run cargo test in docker.yml workflow - Manage PRs, releases, branches and latest altogether with variables * Workflows: update dockerhub description * Add clippy linting
19 lines
527 B
YAML
19 lines
527 B
YAML
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.3.4
|
|
- name: Docker Hub Description
|
|
uses: peter-evans/dockerhub-description@2.4.2
|
|
with:
|
|
username: mindflavor
|
|
password: ${{ secrets.DOCKERHUB_PASSWORD }}
|
|
repository: mindflavor/prometheus-wireguard-exporter
|