Skip to content
Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Latest commit

 

History

4 Commits

Folders and files

NameName
Last commit message
Last commit date
 
 
 
 

Repository files navigation

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

About

GitHub Action for deploying to Clodui

Topics

Resources

Stars

1 star

Watchers

1 watching

Forks

Releases

Packages

Used by

Contributors