1
0
Fork 0
mirror of https://github.com/kubernetes-sigs/node-feature-discovery.git synced 2024-12-14 11:57:51 +00:00

Merge pull request #1355 from marquiz/devel/scripts

scripts/update-gh-pages: sync OWNERS from master to gh-pages
This commit is contained in:
Kubernetes Prow Robot 2023-09-11 07:00:11 -07:00 committed by GitHub
commit ff1a212719
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -181,6 +181,11 @@ else
commit_hash=`git describe --tags --dirty --always`
fi
# Sync OWNERS file from master branch
if [ "$GITHUB_REF" = "refs/heads/master" ]; then
cp OWNERS "$build_dir"/OWNERS
fi
# Switch to work in the gh-pages worktree
pushd "$build_dir" > /dev/null