mirror of
https://github.com/kerberos-io/base.git
synced 2026-04-23 07:41:08 +08:00
add armv7 build
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
name: Docker AMD64
|
||||
|
||||
on:
|
||||
push:
|
||||
branches: [ main ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Login to DockerHub
|
||||
uses: docker/login-action@v2
|
||||
with:
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
||||
- name: Build
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
push: false
|
||||
tags: kerberos/base:beta
|
||||
- name: Scan
|
||||
uses: Azure/container-scan@v0
|
||||
with:
|
||||
image-name: kerberos/base:beta
|
||||
- name: Push
|
||||
uses: docker/build-push-action@v3
|
||||
with:
|
||||
push: true
|
||||
tags: kerberos/base:beta
|
||||
Reference in New Issue
Block a user