Go to file
2019-08-31 23:16:43 +02:00
.res Initial version 2019-08-31 22:23:41 +02:00
.dockerignore Initial version 2019-08-31 22:23:41 +02:00
.gitignore Initial version 2019-08-31 22:23:41 +02:00
action.yml Initial version 2019-08-31 22:23:41 +02:00
Dockerfile Fix entrypoint 2019-08-31 23:16:43 +02:00
entrypoint.sh Fix entrypoint 2019-08-31 23:16:43 +02:00
LICENSE Initial version 2019-08-31 22:23:41 +02:00
README.md Initial version 2019-08-31 22:23:41 +02:00

Support me on Patreon Paypal Donate

About

A GitHub Action for deploying GitHub Pages

⚠️ Note: To use this action, you must have access to the GitHub Actions feature. GitHub Actions are currently only available in public beta. You can apply for the GitHub Actions beta here.

🚀 Usage

Below is a simple to deploy to GitHub Pages:

name: website

on: push

jobs:
  publish:
    runs-on: ubuntu-latest
    steps:
      -
        name: Checkout
        uses: actions/checkout@master
      -
        name: Build
        run: |
          mkdir public
          cat > public/index.html <<EOL
          <!doctype html>
          <html>
            <head>
              <title>GitHub Pages deployed!</title>
            </head>
            <body>
              <p>GitHub Pages with <strong>${{ github.sha }}</strong> commit ID has been deployed through <a href="">GitHub Pages action</a> successfully.</p>
            </body>
          </html>
          EOL          
      -
        name: Deploy
        uses: crazy-max/ghaction-github-pages@master
        with:
          build_dir: public
        env:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

💅 Customizing

inputs

The following are required as step.with keys

Name Type Description
build_dir String Path to build directory to deploy

environment variables

The following are required as step.env keys

Name Description
GITHUB_TOKEN GITHUB_TOKEN as provided by secrets

🤝 How can I help ?

All kinds of contributions are welcome 🙌!
The most basic way to show your support is to star 🌟 the project, or to raise issues 💬
But we're not gonna lie to each other, I'd rather you buy me a beer or two 🍻!

Support me on Patreon Paypal Donate

📝 License

MIT. See LICENSE for more details.