Skip to content

Commit

Permalink
fix working directory
Browse files Browse the repository at this point in the history
Signed-off-by: Raphaël Courivaud <[email protected]>
  • Loading branch information
rcourivaud committed Jan 22, 2025
1 parent 211af4f commit 882dda7
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/github-actions-data-stack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,11 @@ jobs:
pip install dbt-core dbt-postgres
- name: Build DBT Docs
working-directory: analytics/dbt
run: |
dbt docs generate
mkdir -p dbt_docs
mv target/* dbt_docs/
mkdir -p ../dbt_docs
mv target/* ../dbt_docs/
- name: Configure AWS CLI
env:
Expand All @@ -55,4 +56,4 @@ jobs:
env:
DBT_DOC_BUCKET_NAME: ${{ secrets.DBT_DOC_BUCKET_NAME }}
run: |
aws s3 sync dbt_docs/ s3://$DBT_DOC_BUCKET_NAME --acl public-read --endpoint-url https://cellar-c2.services.clever-cloud.com
aws s3 sync analytics/dbt_docs/ s3://$DBT_DOC_BUCKET_NAME --acl public-read --endpoint-url https://cellar-c2.services.clever-cloud.com

0 comments on commit 882dda7

Please sign in to comment.