All Projects → heowc → action-hexo

heowc / action-hexo

Licence: MIT license
No description or website provided.

Programming Languages

Dockerfile
14818 projects
shell
77523 projects

Projects that are alternatives of or similar to action-hexo

xunit-to-junit
This Extensible Stylesheet Language Transformations can transform a xUnit.net v2 XML test results file into a JUnit test results file.
Stars: ✭ 21 (-25%)
Mutual labels:  github-actions
action-detekt-all
Run detekt for all files
Stars: ✭ 25 (-10.71%)
Mutual labels:  github-actions
action-branch-name
Github action to enforce naming convention on branch names
Stars: ✭ 53 (+89.29%)
Mutual labels:  github-actions
cibuildwheel
🎡 Build Python wheels for all the platforms on CI with minimal configuration.
Stars: ✭ 1,350 (+4721.43%)
Mutual labels:  github-actions
action-homebrew-bump-formula
⚙️ A GitHub Action to easily bump Homebrew formula on new release
Stars: ✭ 68 (+142.86%)
Mutual labels:  github-actions
clang-format-action
GitHub Action for clang-format checking
Stars: ✭ 48 (+71.43%)
Mutual labels:  github-actions
compile-sketches
GitHub Actions action that checks whether Arduino sketches compile and produces a report of data from the compilations
Stars: ✭ 35 (+25%)
Mutual labels:  github-actions
mean-docker
A Mean stack (Angular 15.0.3, Expressjs 4.17.1, MongoDB) jump start project with support of docker.
Stars: ✭ 73 (+160.71%)
Mutual labels:  github-actions
oalieno.github.io
oalieno.github.io/
Stars: ✭ 22 (-21.43%)
Mutual labels:  hexo
hexo-bilibili-bangumi
hexo 番剧页面插件,可选数据源:Bilibili, Bangumi
Stars: ✭ 252 (+800%)
Mutual labels:  hexo
actions
Our Library of GitHub Actions
Stars: ✭ 49 (+75%)
Mutual labels:  github-actions
githubsecrets
Manage your GitHub Actions secrets with a simple CLI
Stars: ✭ 41 (+46.43%)
Mutual labels:  github-actions
hexo-theme-minima
An undoubtedly simple and lightweight dark/light theme for Hexo.js
Stars: ✭ 161 (+475%)
Mutual labels:  hexo
sentry-releases-action
A GitHub action that creates releases for Sentry.io.
Stars: ✭ 38 (+35.71%)
Mutual labels:  github-actions
jacoco-badge-generator
Coverage badges, and pull request coverage checks, from JaCoCo reports in GitHub Actions
Stars: ✭ 53 (+89.29%)
Mutual labels:  github-actions
github-release
Github Action to create, update, or add files to Github Releases
Stars: ✭ 61 (+117.86%)
Mutual labels:  github-actions
actions-runner-controller
Kubernetes controller for GitHub Actions self-hosted runners
Stars: ✭ 2,636 (+9314.29%)
Mutual labels:  github-actions
butterfly-plugins
No description or website provided.
Stars: ✭ 36 (+28.57%)
Mutual labels:  hexo
restrict-cursing-action
Github Action to prevent cursing and bad language in issues and pull requests
Stars: ✭ 20 (-28.57%)
Mutual labels:  github-actions
actions
Load secrets into GitHub Actions
Stars: ✭ 47 (+67.86%)
Mutual labels:  github-actions

GitHub Action for Hexo

This Action for hexo enables arbitrary actions with the hexo command-line client

Usage

An example workflow to clean, generate, and deploy an hexo to the default public registry follows:

YAML syntax

on: push
name: Deploy
jobs:
  build:
    name: Build
    runs-on: ubuntu-latest
    steps:
    - name: Clean
      uses: heowc/action-hexo@main
      with:
        args: clean
    - name: Generate
      uses: heowc/action-hexo@main
      with:
        args: generate
    - name: Deploy
      uses: heowc/action-hexo@main
      env:
        EMAIL: <your-input-email>
        NAME: <your-input-name>
      with:
        args: deploy

Environment variables

If using hexo-deployer-git when Deploy action,

  • NAME - Optional. To specify a name when deploying. Defaults to ""

  • EMAIL - Optional. To specify a name when deploying. Defaults to ""

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].