We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9116bc7 commit 62436ffCopy full SHA for 62436ff
Makefile
@@ -12,10 +12,12 @@ build-docs:
12
13
publish-docs: build-docs
14
rm -rf /tmp/sentry-js-docs | true
15
- cp -r ./docs /tmp/sentry-js-docs
16
- git checkout gh-pages
17
- cp -r /tmp/sentry-js-docs/* .
18
- git commit -a -m "meta: Update docs"
+ mkdir /tmp/sentry-js-docs
+ cp -r ./docs /tmp/sentry-js-docs/docs
+ cd /tmp/sentry-js-docs && \
+ git clone --single-branch --branch gh-pages [email protected]:getsentry/sentry-javascript.git && \
19
+ cp -r /tmp/sentry-js-docs/docs/* /tmp/sentry-js-docs/sentry-javascript/ && \
20
+ cd /tmp/sentry-js-docs/sentry-javascript && \
21
+ git commit -a -m "meta: Update docs" && \
22
git push origin gh-pages
- git checkout master
23
.PHONY: publish-docs
0 commit comments