From 47879b4c79845a994ada0d2e24f3a1d447e229c6 Mon Sep 17 00:00:00 2001 From: Spencer Lepine <60903378+spencerlepine@users.noreply.github.com> Date: Mon, 8 Apr 2024 13:23:59 -0700 Subject: [PATCH] fix: update workflows content folder path --- .github/workflows/post-to-dev-to.yml | 2 +- .github/workflows/post-to-medium.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/post-to-dev-to.yml b/.github/workflows/post-to-dev-to.yml index 0442d27..53f1daa 100644 --- a/.github/workflows/post-to-dev-to.yml +++ b/.github/workflows/post-to-dev-to.yml @@ -25,7 +25,7 @@ jobs: github_token: ${{ secrets.GITHUB_TOKEN }} # (Optional) The files to publish. Default is "posts/**/*.md" # files: 'blog/**/*.md' - files: "blog/${{ inputs.folder }}/index.devto" + files: "content/${{ inputs.folder }}/index.devto" # (Optional) The git branch to use. Default is 'main'. branch: main conventional_commits: false \ No newline at end of file diff --git a/.github/workflows/post-to-medium.yml b/.github/workflows/post-to-medium.yml index 8f41fba..6cf4bad 100644 --- a/.github/workflows/post-to-medium.yml +++ b/.github/workflows/post-to-medium.yml @@ -29,7 +29,7 @@ jobs: uses: philips-software/post-to-medium-action@v0.6.0 with: integration_token: "${{ secrets.MEDIUM_TOKEN }}" - file: "blog/${{ inputs.folder }}/index.medium" + file: "content/${{ inputs.folder }}/index.medium" content_format: "markdown" notify_followers: "false" tags: "${{ inputs.tags }}"