awseward / gh-action-fake5

A GitHub Action for running FAKE 5 targets

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

GitHub Action for FAKE

This Action wraps the FAKE CLI to enable common FAKE commands.

Example .github/main.workflow:

workflow "Example workflow" {
  on = "push"
  resolves = ["Run a FAKE target"]
}

action "Run a FAKE target" {
  uses = "awseward/gh-action-fake5@master"
  args = ["some_target"]
}

The above workflow will run the following FAKE call in a GitHub Action:

fake build -t some_target

About

A GitHub Action for running FAKE 5 targets


Languages

Language:Dockerfile 53.3%Language:HCL 42.6%Language:Shell 4.0%