1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

pass docker creds

This commit is contained in:
Kyle Spearrin 2020-07-17 11:02:52 -04:00
parent a6860c22fd
commit 13df738427

View File

@ -45,6 +45,9 @@ jobs:
- name: Log into docker - name: Log into docker
if: github.ref == 'refs/heads/master' || github.event_name == 'release' if: github.ref == 'refs/heads/master' || github.event_name == 'release'
run: echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin run: echo "$DOCKER_PASSWORD" | docker login -u "$DOCKER_USERNAME" --password-stdin
env:
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
- name: Checkout repo - name: Checkout repo
uses: actions/checkout@v2 uses: actions/checkout@v2