From 284ccfccba54cd2059062a9bc794f4115b8c48bd Mon Sep 17 00:00:00 2001 From: MassiveBox Date: Fri, 29 Mar 2024 14:04:34 +0100 Subject: [PATCH] Fix syntax --- .forgejo/workflows/build-crx.yaml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.forgejo/workflows/build-crx.yaml b/.forgejo/workflows/build-crx.yaml index c44df1e..c5e08c9 100644 --- a/.forgejo/workflows/build-crx.yaml +++ b/.forgejo/workflows/build-crx.yaml @@ -4,13 +4,13 @@ jobs: runs-on: docker steps: - uses: actions/checkout@v4 - - run: cd .. - ls + - run: | + cd .. apt-get update apt-get install -y chromium - echo ${{ secrets.CERT }} > cf-detect-chrome.pem + echo "${{ secrets.CERT }}" > cf-detect-chrome.pem chromium --no-sandbox --pack-extension=./cf-detect-chrome --pack-extension-key=./cf-detect-chrome.pem - uses: actions/upload-artifact@v4 with: - path: ./cf-detect-chrome.crx + path: ../cf-detect-chrome.crx overwrite: true