forked from simonw/sf-tree-history
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Remove environment for workflows yml
- Loading branch information
1 parent
5c97b90
commit 7e2e9c4
Showing
4 changed files
with
2 additions
and
9 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,8 +8,8 @@ on: | |
jobs: | ||
build: | ||
runs-on: macos-latest | ||
environment: | ||
name: Workflows | ||
env: | ||
MOTHERDUCK_TOKEN: ${{ secrets.MOTHERDUCK_TOKEN }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
@@ -22,8 +22,6 @@ jobs: | |
python3 -m pip install uv | ||
uv pip install --system -r requirements.txt | ||
- name: Run Transformations | ||
env: | ||
MOTHERDUCK_TOKEN: ${{secrets.MOTHERDUCK_TOKEN}} | ||
run: | | ||
dbt deps | ||
dbt build --target prod |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,6 @@ jobs: | |
ci: | ||
name: CI Check | ||
runs-on: macos-latest | ||
environment: | ||
name: Workflows | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,8 +9,6 @@ on: | |
jobs: | ||
scheduled: | ||
runs-on: ubuntu-latest | ||
environment: | ||
name: Workflows | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,6 @@ dbtree: | |
dev: | ||
type: duckdb | ||
path: ./dbtree.db | ||
threads: 8 | ||
prod: | ||
type: duckdb | ||
path: md:dbtree | ||
|