From 220dac5ef639498cf57310b1428d8f6b8b91afd4 Mon Sep 17 00:00:00 2001 From: alondhe Date: Thu, 7 Sep 2023 23:11:53 -0700 Subject: [PATCH] trying new openssl steps --- .github/workflows/default.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/.github/workflows/default.yml b/.github/workflows/default.yml index d3638c1..5a347a5 100644 --- a/.github/workflows/default.yml +++ b/.github/workflows/default.yml @@ -31,9 +31,8 @@ jobs: - name: Use generated certificates if: matrix.httpType == 'https' && runner.os == 'Linux' run: | - mv hostcert.pem ./certs/broadsea.crt - mv hostkey.pem ./certs/broadsea.key - openssl x509 -in ./certs/broadsea.crt -noout -text + openssl x509 -outform der -in hostcert.pem -out ./certs/broadsea.crt + openssl x509 -in hostkey.pem -out ./certs/broadsea.key - name: Build traefik container run: docker-compose --env-file .env up -d - name: Build default profile