All Projects → jzweifel → gatsby-cli-github-action

jzweifel / gatsby-cli-github-action

Licence: MIT license
GitHub Action wrapping the Gatsby CLI

Programming Languages

shell
77523 projects
Dockerfile
14818 projects
ruby
36898 projects - #4 most used programming language

Projects that are alternatives of or similar to gatsby-cli-github-action

verify-linked-issue-action
A GitHub action that verifies your pull request contains a reference to an issue.
Stars: ✭ 18 (-61.7%)
Mutual labels:  github-actions
publish-docker-action
GitHub Action used to build, tag and publish docker image to your docker registry
Stars: ✭ 31 (-34.04%)
Mutual labels:  github-actions
create-release-action
| Public | GitHub Action to Create a Release in Octopus Deploy
Stars: ✭ 68 (+44.68%)
Mutual labels:  github-actions
changelog-generator
GitHub Action to generate changelogs, release notes, whatever
Stars: ✭ 95 (+102.13%)
Mutual labels:  github-actions
actions-js-build
GitHub Actions for running Javascript build tools and committing file changes
Stars: ✭ 46 (-2.13%)
Mutual labels:  github-actions
get-diff-action
GitHub Actions to get git diff
Stars: ✭ 149 (+217.02%)
Mutual labels:  github-actions
portfolio
Site built from fastpages: https://fastpages.fast.ai/. Deployed here 👉
Stars: ✭ 16 (-65.96%)
Mutual labels:  github-actions
DenverCoder1
Jonah Lawrence's Profile README
Stars: ✭ 320 (+580.85%)
Mutual labels:  github-actions
setup-graalvm
No description or website provided.
Stars: ✭ 63 (+34.04%)
Mutual labels:  github-actions
tauri-action
Build your Web application as a Tauri binary for MacOS, Linux and Windows
Stars: ✭ 290 (+517.02%)
Mutual labels:  github-actions
mc-publish
GitHub Action that helps you publish your Minecraft mods
Stars: ✭ 76 (+61.7%)
Mutual labels:  github-actions
DemoApp
An Android template project for fast development and test.
Stars: ✭ 33 (-29.79%)
Mutual labels:  github-actions
issue-states
GitHub Action that closes or reopens issues when they are moved to a project column
Stars: ✭ 64 (+36.17%)
Mutual labels:  github-actions
zhiiiyang
It is a self-updating personal README showing my latest tweet and reply.
Stars: ✭ 27 (-42.55%)
Mutual labels:  github-actions
NJU-health-report
用于在 GitHub Action 上部署南京大学每日健康填报自动打卡脚本
Stars: ✭ 112 (+138.3%)
Mutual labels:  github-actions
cfn-deploy
A useful GitHub Action to help you deploy cloudformation templates
Stars: ✭ 14 (-70.21%)
Mutual labels:  github-actions
CodeforcesApiPy
Implementation of https://codeforces.com API
Stars: ✭ 17 (-63.83%)
Mutual labels:  github-actions
clojure-dependency-update-action
A simple GitHub Actions job to create Pull Requests for outdated dependencies in clojure projects
Stars: ✭ 37 (-21.28%)
Mutual labels:  github-actions
branch-names
Github action to retrieve branch or tag names with support for all events.
Stars: ✭ 99 (+110.64%)
Mutual labels:  github-actions
myshoes
Auto-scaling VirtualMachine runner 🏃 for GitHub Actions
Stars: ✭ 68 (+44.68%)
Mutual labels:  github-actions

GitHub Action for Gatsby CLI

This Action wraps the Gatsby CLI to enable common Gatsby commands.

Usage

on: push
name: Build Gatsby Site
jobs:
  build:
    name: Build Gatsby Site
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - name: Build Gatsby Site
      uses: jzweifel/gatsby-cli-github-action@master
      with:
        gatsby-arg: build
on: push
name: Build Gatsby Site in Subdirectory
jobs:
  build:
    name: Build Gatsby Site
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@master
    - name: Build Gatsby Site
      uses: jzweifel/gatsby-cli-github-action@master
      env:
        GATSBY_PROJECT_PATH: "./client"
      with:
        gatsby-arg: build

Inputs

gatsby-arg

Required The arguments to pass to Gatsby CLI. Default build.

Environment variables

  • GATSBY_PROJECT_PATH - Optional. Directory from which to execute the Gatsby CLI.

License

The Dockerfile and associated scripts and documentation in this project are released under the MIT License.

Container images built with this project include third party materials. See THIRD_PARTY_NOTICE.md for details.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].