Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

X #54

Closed
wants to merge 1 commit into from
Closed

X #54

Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 0 additions & 62 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,62 +0,0 @@
name: build
on:
push:
tags:
- '*'
branches:
- '*'

jobs:
build:
name: Docker
runs-on: ubuntu-latest

steps:
- name: Checkout
uses: actions/checkout@v2

- name: Downcase repo
run: echo REPOSITORY=matusnovak/prometheus-smartctl >> $GITHUB_ENV

- name: Docker metadata
id: docker_metadata
uses: docker/metadata-action@v3
with:
images: ${{ env.REPOSITORY }}
# images: ${{ env.REPOSITORY }},ghcr.io/${{ env.REPOSITORY }}
flavor: |
latest=true
prefix=
suffix=
tags: |
type=sha
type=ref,event=tag

- name: Set up QEMU
uses: docker/[email protected]

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1

- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

# - name: Login to GitHub Container Registry
# uses: docker/login-action@v1
# with:
# registry: ghcr.io
# username: ${{ github.repository_owner }}
# password: ${{ secrets.GH_PAT }}

- name: Build and push Docker image
uses: docker/build-push-action@v2
with:
context: .
file: ./Dockerfile
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64/v8,linux/ppc64le,linux/s390x
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_metadata.outputs.tags }}
labels: ${{ steps.docker_metadata.outputs.labels }}