Skip to content

Latest commit

 

History

History
41 lines (29 loc) · 718 Bytes

README.md

File metadata and controls

41 lines (29 loc) · 718 Bytes

bashmu-action

A GitHub action to implement something like

cache + queued-build-hook + nix-eval-jobs / mini hydra

... well, this is mostly a starting point to learn how to write a GitHub action.

Example usage

uses: hypered/bashmu-action
with:
  who-to-greet: 'Mona the Octocat'

Development

$ nix-shell
$ npm install @actions/core
$ npm install @actions/github
$ npm install @vercel/ncc
$ npm install typescript
$ node_modules/.bin/ncc build src/main.js

The actual action is dist/index.js.

A test repository to use the action is at hypered/use-bashmu-action.

Release

git tag -a -m "bashmu-action v0.0" v0.0