mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
32b839e9f7
Co-authored-by: Paul Meyer <49727155+katexochen@users.noreply.github.com>
27 lines
625 B
YAML
27 lines
625 B
YAML
name: Install Docgen
|
|
description: |
|
|
Install Docgen
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Checkout talos
|
|
uses: actions/checkout@ac593985615ec2ede58e132d2e21d2b1cbd6127c # v3.3.0
|
|
with:
|
|
fetch-depth: 0
|
|
repository: "siderolabs/talos"
|
|
ref: "v1.3.1"
|
|
path: talos
|
|
|
|
# This is required to be able to build docgen
|
|
- name: Remove go.work
|
|
shell: bash
|
|
working-directory: talos
|
|
run: rm go.work*
|
|
|
|
- name: Install Docgen
|
|
shell: bash
|
|
working-directory: talos/hack/docgen
|
|
run: |
|
|
go build -o docgen .
|
|
mv docgen /usr/local/bin
|