Skip to content

Commit

Permalink
exclude
Browse files Browse the repository at this point in the history
  • Loading branch information
shayki5 committed Oct 30, 2023
1 parent d8330bb commit 21bcd58
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ on:
workflow_dispatch:
push:
branches: ["main"]
paths-ignore:
- '.github'

env:
REGISTRY: ghcr.io
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/scrape.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,14 +37,12 @@ jobs:
day=$(date -d "$current_date" +"%d")
if [ "$day" = "01" ]; then
cat "$GOOGLE_JSON" > google.json
printf "%s\n" "$c" > test.json
printf "%s\n" "$GOOGLE_JSON" > google.json
python -m pip install --upgrade pip
pip install -r requirements.txt
python gpt.py
else
cat "$GOOGLE_JSON" > google.json
printf "%s\n" "$c" > test.json
printf "%s\n" "$GOOGLE_JSON" > google.json
python -m pip install --upgrade pip
pip install -r requirements.txt
python gpt.py
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/verify-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ name: Node.js CI
on:
push:
branches: [main]
paths-ignore:
- '.github'
pull_request:
branches: [main]
paths-ignore:
- '.github'

jobs:
build:
Expand Down

0 comments on commit 21bcd58

Please sign in to comment.