Skip to content

Project import generated by Copybara. (#1899) #5

Project import generated by Copybara. (#1899)

Project import generated by Copybara. (#1899) #5

Workflow file for this run

name: Update Wiki
on:
push:
branches: [ main ]
jobs:
update-wiki:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
path: featureprofiles
- name: Checkout wiki
uses: actions/checkout@v2
with:
repository: "openconfig/featureprofiles.wiki"
path: featureprofiles.wiki
- name: Set up Go
uses: actions/[email protected]
with:
go-version: 1.19.x
- name: Cache
uses: actions/cache@v2
with:
path: |
~/go/pkg/mod
~/.cache/go-build
key: ${{ github.job }}-${{ runner.os }}-go-build-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ github.job }}-${{ runner.os }}-go-build-
- name: Build Wiki
run: |
pushd featureprofiles.wiki
git config --local user.email "[email protected]"
git config --local user.name "Github Action"
git rm -r testplans || true
popd
pushd featureprofiles
go run tools/wikidoc/wikidoc.go -feature_root feature/ -output_root ../featureprofiles.wiki
popd
pushd featureprofiles.wiki
git add .
git diff --quiet HEAD || git commit -m "Update wiki from featureprofiles" && git push
popd