mirror of
https://github.com/nicolabs/nicobot.git
synced 2026-05-21 11:57:34 +02:00
Fixes variables syntax
This commit is contained in:
parent
2dce1880d4
commit
c321d65d37
9
.github/workflows/dockerhub.yml
vendored
9
.github/workflows/dockerhub.yml
vendored
|
|
@ -7,11 +7,6 @@ on:
|
|||
push:
|
||||
branches: [master]
|
||||
|
||||
# Environment variables available to all jobs and steps in this workflow
|
||||
env:
|
||||
DOCKER_HUB_USERNAME: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
DOCKER_HUB_ACCESS_TOKEN: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
||||
|
||||
jobs:
|
||||
build-publish:
|
||||
name: Build, Publish
|
||||
|
|
@ -22,8 +17,8 @@ jobs:
|
|||
- name: Login to Docker Hub
|
||||
uses: docker/login-action@v1
|
||||
with:
|
||||
username: ${{ DOCKER_HUB_USERNAME }}
|
||||
password: ${{ DOCKER_HUB_ACCESS_TOKEN }}
|
||||
username: ${{ secrets.DOCKER_HUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
|
||||
|
||||
- name: Set up Docker Buildx
|
||||
id: buildx
|
||||
|
|
|
|||
Loading…
Reference in a new issue