cf-detect-chrome/.forgejo/workflows/build-crx.yaml
MassiveBox 1cb4f5540d
All checks were successful
/ build (push) Successful in 1m10s
Fix syntax
2024-03-29 14:12:54 +01:00

18 lines
490 B
YAML

on: [push]
jobs:
build:
runs-on: docker
steps:
- uses: actions/checkout@v4
- run: |
cd ..
ls
apt-get update
apt-get install -y chromium
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
overwrite: true