GitHub Action
GitHub Action for Bunny Launcher 🐰
Purpose
Deploy your website on every commit to bunny.net using Bunny Launcher and GitHub Actions.
Usage
.github/workflows/deploy.yml
name: deployon: - pushjobs: deploy: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: lts # Specify the latest release tag (e.g. "v0.0.0" instead of "main") to lock your version - uses: jlarmstrongiv/bunny-launcher-github-action@main with: accessKey: ${{ secrets.BUNNY_ACCESS_KEY }} # command: deploy # stage: ${{ github.ref_name }} # version: '0.0.0'
Options
Please read the action.yml file.