Add dev and latest.

This commit is contained in:
nmc 2023-01-15 14:57:21 -05:00
parent 8371523e28
commit 1b8dc707a9
2 changed files with 47 additions and 2 deletions

View File

@ -0,0 +1,44 @@
name: DockerBuildAndPushDev
on:
push:
branches:
- '*'
jobs:
multi:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@v3
-
name: Set up QEMU
uses: docker/setup-qemu-action@v2
-
name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
-
name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.CR_PAT }}
# -
# name: Login to DockerHub
# uses: docker/login-action@v1
# with:
# username: ${{ secrets.DOCKERHUB_USERNAME }}
# password: ${{ secrets.DOCKERHUB_TOKEN }}
-
name: Build and push
uses: docker/build-push-action@v3
with:
context: .
file: ./Dockerfile
platforms: linux/386,linux/amd64,linux/arm/v6,linux/arm/v7,linux/arm64,linux/ppc64le,linux/s390x
push: true
tags: |
ghcr.io/ncareau/netgear-lte-exporter:${{ github.head_ref || github.ref_name }}
# ncareau/netgear-lte-exporter:${{ github.head_ref || github.ref_name }}

View File

@ -1,8 +1,9 @@
name: DockerBuildAndPush
name: DockerBuildAndPushLatest
on:
push:
branches: main
branches:
- main
jobs:
multi: