mirror of
https://github.com/bitwarden/server.git
synced 2024-11-21 12:05:42 +01:00
Hotfix BTR model (#1600)
* unzipping the build artifact before building docker image * adding some debugging * trying without the unzip. Seems to unzip itself * fixing the two remaining issues * disabling the docker image build step
This commit is contained in:
parent
3d74f514ad
commit
1559e2bbe4
9
.github/workflows/build.yml
vendored
9
.github/workflows/build.yml
vendored
@ -189,10 +189,6 @@ jobs:
|
||||
base_path: ./src
|
||||
docker_repo: bitwarden
|
||||
dotnet: true
|
||||
- service_name: Billing
|
||||
base_path: ./src
|
||||
docker_repo: bitwardenqa.azurecr.io
|
||||
dotnet: true
|
||||
- service_name: Attachments
|
||||
base_path: ./util
|
||||
docker_repo: bitwarden
|
||||
@ -301,12 +297,11 @@ jobs:
|
||||
uses: actions/download-artifact@3be87be14a055c47b01d3bd88f8fe02320a9bb60 # v2.0.10
|
||||
with:
|
||||
name: ${{ matrix.service_name }}.zip
|
||||
path: ${{ matrix.base_path }}/${{ matrix.service_name }}
|
||||
path: ${{ matrix.base_path }}/${{ matrix.service_name }}/obj/build-output/publish
|
||||
|
||||
- name: Build Docker images
|
||||
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/rc'
|
||||
run: |
|
||||
if [ "${{ matrix.service_name }}" = "K8s-Proxy" ]; then
|
||||
if [ "${{ matrix.service_name }}" = "K8S-Proxy" ]; then
|
||||
docker build -f ${{ matrix.base_path }}/Nginx/Dockerfile-k8s \
|
||||
-t ${{ matrix.docker_repo }}/${{ steps.setup.outputs.service_name }} ${{ matrix.base_path }}/Nginx
|
||||
else
|
||||
|
Loading…
Reference in New Issue
Block a user