Skip to content

Build

Build #65

Workflow file for this run

# This workflow will build a buf project
# for more information view https://buf.build/docs/ci-cd/github-actions/
name: Build
on:
workflow_run:
workflows:
- "Lint"
types:
- completed
branches:
- main
jobs:
build:
name: Buf Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Buf Setup
uses: bufbuild/buf-setup-action@v1
- name: Generate
run: buf generate
- name: Archive artifacts
uses: actions/upload-artifact@v3
with:
name: lib
path: |
lib
retention-days: 7