Add Adobe Creative Cloud to VPN exclusions list #2816
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |