sugar-cli 2.9.1

Command line tool for creating and managing Metaplex Candy Machines.
name: Deploy Install Script to GitHub Pages
on:
  workflow_dispatch:
  push:
    branches:
      - main
    paths: 
      - 'script/sugar-install.sh'
permissions:
  contents: write
jobs:
  deploy-install-script:
    concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
    runs-on: ubuntu-latest
    steps:
      - name: Checkout 🛎️
        uses: actions/checkout@v3

      - name: Build 🔧
        run: |
          mkdir build
          cp ./script/sugar-install.sh ./build/install.sh

      - name: Deploy 🚀
        uses: JamesIves/github-pages-deploy-action@v4
        with:
          folder: build # The folder the action should deploy.