diff --git a/.github/workflows/daily_build.yml b/.github/workflows/daily_build.yml new file mode 100644 index 0000000..f8d70f7 --- /dev/null +++ b/.github/workflows/daily_build.yml @@ -0,0 +1,14 @@ +name: Daily build + +on: + schedule: + - cron: "0 13 * * *" + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: Trigger build webhook on Netlify + run: curl -s -X POST "https://api.netlify.com/build_hooks/${TOKEN}" + env: + TOKEN: ${{ secrets.NETLIFY_CRON_BUILD_HOOK }} diff --git a/content/posts/cat-file-without-comments/index.md b/content/posts/cat-file-without-comments/index.md index de3b4df..0da19ad 100644 --- a/content/posts/cat-file-without-comments/index.md +++ b/content/posts/cat-file-without-comments/index.md @@ -4,7 +4,7 @@ date: 2023-02-22 # Date of post creation. # lastmod: 2023-02-20T10:32:20-06:00 # Date when last modified description: "A quick trick to strip out the comments when viewing the contents of a file." # Description used for search engine. featured: false # Sets if post is a featured post, making appear on the home page side bar. -draft: true # Sets whether to render this page. Draft of true will not be rendered. +draft: false # Sets whether to render this page. Draft of true will not be rendered. toc: true # Controls if a table of contents should be generated for first-level links automatically. usePageBundles: true # menu: main diff --git a/content/posts/create-vms-chromebook-hashicorp-vagrant/index.md b/content/posts/create-vms-chromebook-hashicorp-vagrant/index.md index 44cf0c0..2b84294 100644 --- a/content/posts/create-vms-chromebook-hashicorp-vagrant/index.md +++ b/content/posts/create-vms-chromebook-hashicorp-vagrant/index.md @@ -4,14 +4,14 @@ date: 2023-02-20 # Date of post creation. # lastmod: 2023-02-18T17:22:02-06:00 # Date when last modified description: "Pairing the powerful Linux Development Environment on modern Chromebooks with HashiCorp Vagrant to create and manage local virtual machines for development and testing" # Description used for search engine. featured: false # Sets if post is a featured post, making appear on the home page side bar. -draft: true # Sets whether to render this page. Draft of true will not be rendered. +draft: false # Sets whether to render this page. Draft of true will not be rendered. toc: true # Controls if a table of contents should be generated for first-level links automatically. usePageBundles: true # menu: main # featureImage: "file.png" # Sets featured image on blog post. # featureImageAlt: 'Description of image' # Alternative text for featured image. # featureImageCap: 'This is the featured image.' # Caption (optional). -# thumbnail: "thumbnail.png" # Sets thumbnail image appearing inside card on homepage. +thumbnail: "thumbnail.png" # Sets thumbnail image appearing inside card on homepage. # shareImage: "share.png" # Designate a separate image for social media sharing. codeLineNumbers: false # Override global value for showing of line numbers within code block. series: Projects diff --git a/content/posts/create-vms-chromebook-hashicorp-vagrant/thumbnail.png b/content/posts/create-vms-chromebook-hashicorp-vagrant/thumbnail.png new file mode 100644 index 0000000..a754dd9 Binary files /dev/null and b/content/posts/create-vms-chromebook-hashicorp-vagrant/thumbnail.png differ