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