2026-01-29 17:40:51 +01:00
2026-01-29 17:40:51 +01:00
2024-03-07 23:31:15 +01:00
2026-01-29 17:32:11 +01:00
2026-01-29 16:59:15 +01:00

Usage

Call this composite action from any repository to run the autodeploy/setup.sh script included in this repo.

Example workflow snippet (in the caller repo):

name: call-autodeploy

on:
  workflow_dispatch:

jobs:
  run-autodeploy:
    runs-on: ubuntu-latest
    steps:
      - name: Run autodeploy action from repo
        uses: your-username/snek/.github/actions/autodeploy@main
        with:
          branch: main
          install_prereqs: 'true'

Notes:

  • The action will checkout the caller repository (so it can git add/git commit and git push).
  • If you rely on GITHUB_TOKEN permissions for pushing, ensure permissions.contents in the caller workflow allows write.
  • The action copies the autodeploy directory from this repo into the caller workspace before running the script.
Description
No description provided
Readme 60 KiB
Languages
Shell 100%