Github Action : changement variable username password #2
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish Docker image | ||
on: | ||
push: | ||
branches: | ||
- main | ||
- docker-compose-support | ||
jobs: | ||
build-and-push: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout code | ||
uses: actions/checkout@v3 | ||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v3 | ||
with: | ||
username: ${{ noisette.DOCKERHUB_USERNAME }} | ||
Check failure on line 19 in .github/workflows/docker-publish.yml GitHub Actions / Publish Docker imageInvalid workflow file
Check failure on line 19 in .github/workflows/docker-publish.yml GitHub Actions / Publish Docker imageInvalid workflow file
|
||
password: ${{ noisette.DOCKERHUB_TOKEN }} | ||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v3 | ||
- name: Build and push | ||
uses: docker/build-push-action@v5 | ||
with: | ||
context: . | ||
file: ./Dockerfile | ||
push: true | ||
tags: jeromev34/corbeaudocker:latest |