Skip to content

Commit

Permalink
fix(publish-site.yml): invalid condition for using build cache
Browse files Browse the repository at this point in the history
  • Loading branch information
gouravkhunger committed Jun 29, 2023
1 parent 0a8fd35 commit 65721ad
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/publish-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ on:
workflow_dispatch:
inputs:
cache:
description: "Don't use jekyll cache"
required: false
type: boolean
description: "Don't use jekyll cache"

jobs:
publish:
Expand Down Expand Up @@ -63,7 +62,7 @@ jobs:
run: npm install

- name: Restore/cache .jekyll-cache folder
if: github.event_name == 'push' || inputs.cache == 'false'
if: github.event_name == 'push' || github.event.inputs.cache == 'false'
id: jekyll-cache
uses: actions/cache@v3
with:
Expand Down

1 comment on commit 65721ad

@vercel
Copy link

@vercel vercel bot commented on 65721ad Jun 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

genicsblog – ./

genicsblog.vercel.app
genicsblog-genics.vercel.app
genicsblog-git-main-genics.vercel.app

Please sign in to comment.