├── .dockerignore ├── .github └── workflows │ └── push.yml ├── Brewfile ├── Dockerfile ├── LICENSE ├── README.md ├── THIRD_PARTY_NOTICE.md ├── action.yml ├── entrypoint.sh ├── script ├── bootstrap └── test └── test ├── bin └── gatsby └── entrypoint.bats /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzweifel/gatsby-cli-github-action/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzweifel/gatsby-cli-github-action/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /Brewfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzweifel/gatsby-cli-github-action/HEAD/Brewfile -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzweifel/gatsby-cli-github-action/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzweifel/gatsby-cli-github-action/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzweifel/gatsby-cli-github-action/HEAD/README.md -------------------------------------------------------------------------------- /THIRD_PARTY_NOTICE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzweifel/gatsby-cli-github-action/HEAD/THIRD_PARTY_NOTICE.md -------------------------------------------------------------------------------- /action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzweifel/gatsby-cli-github-action/HEAD/action.yml -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzweifel/gatsby-cli-github-action/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /script/bootstrap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzweifel/gatsby-cli-github-action/HEAD/script/bootstrap -------------------------------------------------------------------------------- /script/test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzweifel/gatsby-cli-github-action/HEAD/script/test -------------------------------------------------------------------------------- /test/bin/gatsby: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | echo "Simulate Gatsby" 3 | -------------------------------------------------------------------------------- /test/entrypoint.bats: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jzweifel/gatsby-cli-github-action/HEAD/test/entrypoint.bats --------------------------------------------------------------------------------