Skip to content

Clodui Actions

Actions
Commands for creating and deploying Clodui websites
v2.0
Latest
Star (1)

GitHub Action for Clodui

GitHub action for deploying changes to your Clodui website. Learn more about Clodui https://www.clodui.com/

Usage

Example GitHub workflow file which shows deploying changes to a website.

name: "Deploy Website"

on: [push]

jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Deploy to Clodui
        uses: clodui/actions-cli@v2.0
        with:
          username: ${{ secrets.CLODUI_USERNAME }}
          password: ${{ secrets.CLODUI_PASSWORD }}
          website-id: ${{ secrets.WEBSITE_ID }}
          source-dir: ./sample/test-website/
          publish: publish

Options

  • username : Clodui username; best practice is to read it from secrets
  • password : Clodui password; best practice is to read it from secrets
  • website-id : Id of your Clodui website
  • source-dir : Path to the directory from files to be uploaded. Please make sure it is set as a relative path to your workspace (GITHUB_WORKSPACE)
  • publish : Option for controlling automatic publishing. Valid values are publish or no-publish

Clodui Actions is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

Commands for creating and deploying Clodui websites
v2.0
Latest

Clodui Actions is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.