Browse Source

Fix path in 'Build Docker images' step (#1356)

pull/1357/head
Vince Grassia 5 years ago committed by GitHub
parent
commit
1900f52a34
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      .github/workflows/build.yml

2
.github/workflows/build.yml

@ -210,7 +210,7 @@ jobs: @@ -210,7 +210,7 @@ jobs:
if [ "$SERVICE_NAME" = "k8s-proxy" ]; then
docker build -f ${{ matrix.base_path }}/Nginx/Dockerfile-k8s -t bitwarden/$SERVICE_NAME ${{ matrix.base_path }}/Nginx
else
docker build -t bitwarden/$SERVICE_NAME ${{ matrix.base_path }}/$SERVICE_NAME
docker build -t bitwarden/$SERVICE_NAME ${{ matrix.base_path }}/${{ matrix.service_name }}
fi
- name: Tag rc

Loading…
Cancel
Save