Skip to content

Commit

Permalink
Map secrets for docker login
Browse files Browse the repository at this point in the history
  • Loading branch information
DrB-S authored Oct 30, 2023
1 parent e3ec3dc commit 9c054d1
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,12 @@ on: [push]

steps:
- uses: actions/checkout@v2
- name: docker login
- env:
DOCKER_USER: ${{secrets.DOCKER_USER}}
DOCKER_PASSWORD: ${{secrets.DOCKER_PASSWORD}}
- run: |
docker login -u $DOCKER_USER -p $DOCKER_PASSWORD
- name: docker build HeatCluster
- run: |
docker build ./python3 DrB-S/HeatCluster:0.4.11
Expand Down

0 comments on commit 9c054d1

Please sign in to comment.