Generate commands json and render uipathcli documentation pages #229
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: [push] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.20' | |
cache: true | |
- name: Install dependencies | |
run: go get . | |
- name: Build | |
run: go build . | |
- name: Test | |
run: go test -v ./... | |
- name: Lint | |
run: | | |
go install github.com/golangci/golangci-lint/cmd/[email protected] | |
golangci-lint run | |
- name: Package | |
run: ./build.sh && ./package.sh | |
- name: Upload packages | |
uses: actions/upload-artifact@v3 | |
with: | |
name: packages | |
path: build/packages/ | |
if-no-files-found: error | |
publish_pages: | |
needs: build | |
permissions: | |
pages: write | |
id-token: write | |
#if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download packages | |
uses: actions/download-artifact@v3 | |
with: | |
name: packages | |
path: build/packages/ | |
- name: Generate commands | |
run: | | |
tar -xzvf build/packages/uipathcli-linux-amd64.tar.gz | |
./uipath commands > documentation/commands.json | |
- name: Setup Pages | |
uses: actions/configure-pages@v3 | |
- name: Upload artifact | |
uses: actions/upload-pages-artifact@v2 | |
with: | |
path: 'documentation' | |
- name: Deploy to GitHub Pages | |
uses: actions/deploy-pages@v2 | |
release: | |
needs: build | |
if: github.ref == 'refs/heads/main' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Download packages | |
uses: actions/download-artifact@v3 | |
with: | |
name: packages | |
path: build/packages/ | |
- name: Publish | |
run: ./publish.sh | |
env: | |
GITHUB_TOKEN: ${{ github.token }} |