Skip to content

Add Adobe Creative Cloud to VPN exclusions list #2816

Add Adobe Creative Cloud to VPN exclusions list

Add Adobe Creative Cloud to VPN exclusions list #2816

Workflow file for this run

name: Build
on:
push:
branches: [main]
pull_request:
schedule:
# run build at 10:00 every Monday
- cron: "0 10 * * MON"
env:
NODE_VERSION: 18.x
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Lint
run: |
yarn install
yarn lint
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: ${{ env.NODE_VERSION }}
- name: Run conversion
run: |
yarn install
yarn convert
- name: Deploy
if: github.ref == 'refs/heads/main' && github.repository == 'AdguardTeam/companiesdb'
run: |
git config --global user.name 'GH action'
git config --global user.email '[email protected]'
git add dist/*
git commit -m "Auto-update"
git push