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
- Host: GitHub
- URL: https://github.com/unionai-oss/flyte-register-action
- Owner: unionai-oss
- Created: 2021-06-06T18:30:39.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2025-03-31T17:57:36.000Z (about 1 year ago)
- Last Synced: 2025-07-04T13:49:51.792Z (11 months ago)
- Topics: flyte
- Language: TypeScript
- Homepage: https://github.com/flyteorg/flyte
- Size: 481 KB
- Stars: 5
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
```