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

Fixing the docker image build (#1618)

* Fixing the docker image build

* fixing the download path

* adding conditional on the docker image build artifact setup
This commit is contained in:
Joseph Flinn 2021-10-06 10:21:35 -07:00 committed by GitHub
parent 79447b6671
commit 0cc59f3cfa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -294,7 +294,12 @@ jobs:
uses: actions/download-artifact@3be87be14a055c47b01d3bd88f8fe02320a9bb60 # v2.0.10 uses: actions/download-artifact@3be87be14a055c47b01d3bd88f8fe02320a9bb60 # v2.0.10
with: with:
name: ${{ matrix.service_name }}.zip name: ${{ matrix.service_name }}.zip
path: ${{ matrix.base_path }}/${{ matrix.service_name }}/obj/build-output/publish
- name: Setup build artifact
if: ${{ matrix.dotnet }}
run: |
mkdir -p ${{ matrix.base_path}}/${{ matrix.service_name}}/obj/build-output/publish
unzip ${{ matrix.service_name }}.zip -d ${{ matrix.base_path}}/${{ matrix.service_name}}/obj/build-output/publish
- name: Build Docker images - name: Build Docker images
run: | run: |