Skip to content

Commit

Permalink
build from artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
chicoxyzzy committed Jul 15, 2024
1 parent 88fdefd commit 6af3d09
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/upload-docs-cli-artifact.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: 'upload docs cli artifact'

on:
pull_request:
push:
branches:
- gen_docs

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- uses: actions/setup-go@v4
with:
go-version-file: .go-version

- name: 'Build CLI with docs support'
run: make dispatch-docs

- name: 'Upload Artifact'
uses: actions/upload-artifact@v4
with:
name: cli_with_docs
path: ./build/linux/amd64/dispatch

0 comments on commit 6af3d09

Please sign in to comment.