|
@@ -12,12 +12,6 @@ on:
|
|
|
arch_label:
|
|
|
required: true
|
|
|
type: string
|
|
|
- DOCKERHUB_USER:
|
|
|
- required: true
|
|
|
- type: string
|
|
|
- DOCKERHUB_TOKEN:
|
|
|
- required: true
|
|
|
- type: string
|
|
|
|
|
|
jobs:
|
|
|
build:
|
|
@@ -31,8 +25,8 @@ jobs:
|
|
|
- name: Login to Docker Hub
|
|
|
uses: docker/login-action@v2
|
|
|
with:
|
|
|
- username: ${{ inputs.DOCKERHUB_USER }}
|
|
|
- password: ${{ inputs.DOCKERHUB_TOKEN }}
|
|
|
+ username: ${{ secrets.DOCKERHUB_USER }}
|
|
|
+ password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
|
|
- name: Extract metadata (tags, labels) for Docker
|
|
|
id: meta
|