diff --git a/.github/workflows/ci-cd.yml b/.github/workflows/ci-cd.yml index 5e5cde4f3..ed248ee02 100644 --- a/.github/workflows/ci-cd.yml +++ b/.github/workflows/ci-cd.yml @@ -39,12 +39,13 @@ jobs: - name: Get Poetry cache directory id: poetry-cache - run: echo "::set-output name=dir::$(poetry config cache-dir)" + # run: echo "::set-output name=dir::$(poetry config cache-dir)" + run: echo "POETRY_CACHE_DIR=$(poetry config cache-dir)" >> $GITHUB_ENV - name: Cache Poetry dependencies uses: actions/cache@v3 with: - path: ${{ steps.poetry-cache.outputs.dir }} + path: ${{ env.POETRY_CACHE_DIR }} key: ${{ runner.os }}-poetry-${{ hashFiles('**/poetry.lock') }} restore-keys: | ${{ runner.os }}-poetry- diff --git a/blt/urls.py b/blt/urls.py index 844d08776..4899fe18d 100644 --- a/blt/urls.py +++ b/blt/urls.py @@ -571,15 +571,11 @@ path("api/timelogsreport/", website.views.TimeLogListAPIView, name="timelogsreport"), path("time-logs/", website.views.TimeLogListView, name="time_logs"), path("sizzle-daily-log/", website.views.sizzle_daily_log, name="sizzle_daily_log"), - path( - "blogs/", include("blog.urls")), + path("blogs/", include("blog.urls")), path( "user-sizzle-report//", - website.views.user_sizzle_report, - name="user_sizzle_report", - , ), ]