Generate Flyte manifest #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Generate Flyte manifest | |
on: | |
workflow_dispatch: | |
inputs: | |
next-version: | |
description: "version name. example v0.1.1" | |
required: true | |
jobs: | |
update-flyte-releases: | |
name: Update Flyte components | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: "0" | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
- name: Update references | |
env: | |
VERSION: ${{ github.event.inputs.next-version }} | |
run: | | |
make release_automation | |
make helm | |
- name: Create Pull Request | |
id: cpr | |
uses: peter-evans/create-pull-request@v3 | |
with: | |
token: ${{ secrets.FLYTE_BOT_PAT }} | |
commit-message: Update Flyte Components | |
committer: Flyte-Bot <[email protected]> | |
author: ${{ github.actor }} <${{ github.actor }}@users.noreply.github.com> | |
signoff: true | |
branch: flyte-bot-update-releases | |
delete-branch: true | |
title: 'Update Flyte components' | |
body: | | |
Updated flyte deployment | |
- Updated GCP Flyte helm generated manifest file | |
- Updated EKS Flyte helm generated manifest file | |
- Updated Sandbox Flyte helm generated manifest file | |
- Updated TEST Flyte helm generated manifest file | |
- Auto-generated by [flyte-bot] | |
labels: | | |
helm | |
team-reviewers: | | |
flyte-maintainers | |
draft: false |