API event #5.1 failed

  • Ran for
AMD64
no language set
Git
api
{
  "group": "container",
  "dist": "jammy",
  "language": "generic",
  "script": [
    "echo \"No build step required\""
  ],
  "deploy": {
    "provider": "pages",
    "skip_cleanup": true,
    "github_token": "$GITHUB_TOKEN",
    "keep_history": true,
    "local_dir": "docs",
    "on": {
      "branch": "main"
    },
    "verbose": true
  }
}
mkdtravis/hosted-travis:.travis.yml@204ae2c
# Travis CI configuration file for GitHub Pages deployment

# Specify the build environment
group: container
dist: jammy
language: generic

# If you're building the site before deployment (e.g., using Jekyll)
script:
  - echo "Building the site"
  - jekyll build -d docs  # If you're generating the site, place the output in 'docs'

# Deployment configuration
deploy:
  provider: pages
  skip_cleanup: true  # Prevent Travis from cleaning up files before deployment
  github_token: $GITHUB_TOKEN  # GitHub token for authentication
  keep_history: true  # Retain commit history on gh-pages
  local_dir: docs  # Directory to deploy (this should match the GitHub Pages source, /docs)
  on:
    branch: main  # Only deploy on changes to the main branch
  verbose: true  # Enable verbose output for debugging
Build Config
{
  "language": "generic",
  "os": [
    "linux"
  ],
  "dist": "jammy",
  "group": "container",
  "script": [
    "echo \"Building the site\"",
    "jekyll build -d docs",
    "echo \"No build step required\""
  ],
  "deploy": [
    {
      "provider": "pages",
      "strategy": "git",
      "skip_cleanup": true,
      "keep_history": true,
      "local_dir": "docs",
      "on": {
        "branch": [
          "main"
        ]
      },
      "verbose": true,
      "token": "$GITHUB_TOKEN"
    }
  ]
}