17 lines
497 B
YAML
17 lines
497 B
YAML
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- run: |
|
|
cd ..
|
|
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@v3
|
|
with:
|
|
path: /workspace/massivebox/cf-detect-chrome.crx
|
|
overwrite: true
|