GitHub Actions workflow
Use our guide to set up GitHub Actions build and deploy to manage releases in Aviator. Instructions on authentication, building and deploying workflows.
Authentication
Build workflow
Option A - Using Two-step workflow
on:
workflow_dispatch:
inputs:
aviator_release_cut_id:
description: "Database ID of release cut"
required: false
type: string
aviator_release_cut_commit_hash:
description: "Commit SHA, branch name, or tag of the HEAD to be built"
required: false
type: string
aviator_release_candidate_version:
description: "Name of the version"
required: true
type: stringOption B - Skipping build step

Deploy workflow
Last updated
Was this helpful?
