Skip to content

2.4.4-rc2

2.4.4-rc2 #146

Workflow file for this run

# Starts a release for the given ref on the Glue API
name: Start Release
on:
workflow_dispatch:
release:
types: [published]
permissions:
id-token: write
contents: read
jobs:
start_release:
name: Starts release process in Glue API
runs-on: [glue-notify]
steps:
- name: Set Env
uses: Chia-Network/actions/setjobenv@main
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Start pre-release
uses: Chia-Network/actions/github/glue@main
if: "github.event.release.prerelease"
with:
json_data: '{"chia_ref": "${{ env.RELEASE_TAG }}"}'
glue_url: "${{ secrets.GLUE_API_URL }}"
glue_project: "${{ env.RFC_REPO }}-prerelease/${{ env.RELEASE_TAG }}"
glue_path: "start"
- name: Start release
uses: Chia-Network/actions/github/glue@main
if: "!github.event.release.prerelease"
with:
json_data: '{"chia_ref": "${{ env.RELEASE_TAG }}"}'
glue_url: "${{ secrets.GLUE_API_URL }}"
glue_project: "${{ env.RFC_REPO }}/${{ env.RELEASE_TAG }}"
glue_path: "start"