Skip to content

Commit

Permalink
Clarify job names in workflows yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gwenwindflower committed Mar 17, 2024
1 parent edd81f6 commit a7e884c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
required: true

jobs:
build:
prod_build:
runs-on: macos-latest
env:
MOTHERDUCK_TOKEN: ${{ secrets.MOTHERDUCK_TOKEN }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- cron: "21 11 * * *"

jobs:
scheduled:
scrape_fresh_data:
runs-on: macos-latest
steps:
- name: Checkout
Expand Down Expand Up @@ -42,6 +42,6 @@ jobs:
git push
build_to_motherduck:
uses: ./.github/workflows/build.yml
needs: scheduled
needs: scrape_fresh_data
secrets:
MOTHERDUCK_TOKEN: ${{ secrets.MOTHERDUCK_TOKEN }}

0 comments on commit a7e884c

Please sign in to comment.