An open API service indexing awesome lists of open source software.

https://github.com/unionai-oss/flyte-register-action

Register flyte workflow
https://github.com/unionai-oss/flyte-register-action

flyte

Last synced: 11 months ago
JSON representation

Register flyte workflow

Awesome Lists containing this project

README

          

# flyte-register-action
Register [flyte](https://github.com/flyteorg/flyte) serialize workflow

## Usage

Refer to the [action.yml](https://github.com/unionai/flyte-register-action/blob/master/action.yml)
to see all of the action parameters.

```yaml
steps:
- uses: actions/checkout@v4
- name: Setup flytectl config
run: |
mkdir -p ~/.flyte
cp config.yaml ~/.flyte/config.yaml
- name: Setup flytesnacks
run: |
git clone https://github.com/flyteorg/flytesnacks
cd flytesnacks
make start
- name: Setup flytectl
uses: unionai-oss/flytectl-setup-action@v0.0.3
with:
version: "0.1.8"
- uses: unionai-oss/flyte-register-action@v0.0.3
with:
version: '0.1.8' # The version of workflow
proto: 'https://github.com/flyteorg/flytesnacks/releases/download/v0.2.89/flytesnacks-core.tgz'
project: 'flytesnacks'
domain: 'development'
archive: true
```