Upgrade Ondatra version (#2138) #1101
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: 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 |