Skip to content

Merge pull request #221 from GoogleCloudPlatform/cloud-deploy #22

Merge pull request #221 from GoogleCloudPlatform/cloud-deploy

Merge pull request #221 from GoogleCloudPlatform/cloud-deploy #22

Workflow file for this run

# Copyright 2022 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# Generate documentation for integrationcli
name: integrationcli Github Pages Pipeline
on:
push:
# Publish semver tags as releases.
tags:
- v[0-9].[0-9]+.[0-9]
jobs:
publish-gh-pages:
name: Publish integrationcli Documentation
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version-file: './go.mod'
check-latest: true
- name: Push GH Pages
run: |
git config --global user.name "integrationcli Publish Action"
git config --global user.email "13950006+srinandan@users.noreply.github.com"
GOBIN=/tmp/ go install github.com/google/go-licenses@v1.0.0
/tmp/go-licenses csv ./cmd/integrationcli > third-party-licenses.txt || echo "Ignore warnings"
/tmp/go-licenses save ./cmd/integrationcli --save_path=third-party --force || echo "Ignore warnings"
git add third-party third-party-licenses.txt
git commit -m "generate licenses - $GITHUB_SHA" || echo "No Changes in license"
go run docs/docs.go
git add --all
git commit -m "Update GH Pages - $GITHUB_SHA" || echo "No Changes in docs"
git push origin HEAD:refs/heads/main