diff --git a/.github/workflows/github-actions-change-variable.yml b/.github/workflows/github-actions-change-variable.yml index 287918a..d05c35c 100644 --- a/.github/workflows/github-actions-change-variable.yml +++ b/.github/workflows/github-actions-change-variable.yml @@ -14,9 +14,10 @@ jobs: build: runs-on: ubuntu-latest steps: + - uses: actions/checkout@v2 - uses: microsoft/variable-substitution@v1 with: - files: ${{ github.workspace }}/docs/_config.yml + files: 'docs/_config.yml' env: recaptcha_site_key: "6LfKJsMfAAAAAFLjDTY0PG9RdcpLBuiuoFNyQLsh" ga_tracking: "UA-5555555-55" \ No newline at end of file diff --git a/docs/_config.yml b/docs/_config.yml index e3825df..fbdefc8 100644 --- a/docs/_config.yml +++ b/docs/_config.yml @@ -12,7 +12,33 @@ heading_level: 6 previews: 3 permalink: pretty -exclude: ["node_modules/", "*.gemspec", "*.gem", "Gemfile", "Gemfile.lock", "package.json", "package-lock.json", "script/", "LICENSE.txt", "lib/", "bin/", "README.md", "Rakefile", "docs/tests/"] +exclude: + [ + 'node_modules/', + '*.gemspec', + '*.gem', + 'Gemfile', + 'Gemfile.lock', + 'package.json', + 'package-lock.json', + 'script/', + 'LICENSE.txt', + 'lib/', + 'bin/', + 'README.md', + 'Rakefile', + 'docs/tests/', + .sass-cache/, + .jekyll-cache/, + gemfiles/, + Gemfile, + Gemfile.lock, + node_modules/, + vendor/bundle/, + vendor/cache/, + vendor/gems/, + vendor/ruby/, + ] plugins: - jekyll-feed @@ -20,18 +46,6 @@ plugins: - jekyll-sitemap - jekyll-mermaid - jekyll-spaceship - -exclude: - - .sass-cache/ - - .jekyll-cache/ - - gemfiles/ - - Gemfile - - Gemfile.lock - - node_modules/ - - vendor/bundle/ - - vendor/cache/ - - vendor/gems/ - - vendor/ruby/ include: ['_pages'] timezone: "America/New_York"