https://github.com/fission/action-demo
A demo of Fission Github action
https://github.com/fission/action-demo
Last synced: 3 months ago
JSON representation
A demo of Fission Github action
- Host: GitHub
- URL: https://github.com/fission/action-demo
- Owner: fission
- Created: 2019-04-23T08:02:12.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2019-04-25T15:16:35.000Z (about 7 years ago)
- Last Synced: 2025-07-09T13:06:57.806Z (12 months ago)
- Language: HCL
- Size: 2.93 KB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fission Action Demo 🚀
This repository demonstrates [Fission action](https://github.com/fission/action) with a simple NodeJS based function using Fission specs. The Fission action in the workflow applies the spec on a push event. The action needs three secrets and a simple workflow is defined as:
```
workflow "Fission CD" {
on = "push"
resolves = ["FissionCD"]
}
action "FissionCD" {
uses = "docker://vishalbiyani/fission-action:7"
secrets = ["CERTIFICATE_AUTHORITY", "SERVER_ADDRESS", "USER_TOKEN"]
}
```
## Testing Locally
You can test actions locally with [Act](https://github.com/nektos/act) but this action can not be tested due to [this issue](https://github.com/nektos/act/issues/53)