Skip to content

Commit f789f97

Browse files
committed
it seems I can't use ${{}} in code
1 parent 7d9437f commit f789f97

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.github/workflows/R-CMD-check.yaml

+2-1
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ jobs:
3333

3434
env:
3535
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}
36+
URL_DEPLOY_DOCS: ${{ secrets.URL_DEPLOY_DOCS }}
3637
R_KEEP_PKG_SOURCE: yes
3738
_R_CHECK_FORCE_SUGGESTS_: false
3839
_R_CHECK_RD_XREFS_: false
@@ -87,4 +88,4 @@ jobs:
8788
git config user.name "Yihui Xie"
8889
git config user.email "[email protected]"
8990
git add .
90-
git commit -m "update docs" && git push && curl -X POST ${{secrets.URL_DEPLOY_DOCS}} || true
91+
git commit -m "update docs" && git push && curl -X POST ${URL_DEPLOY_DOCS} || true

docs/01-start.Rmd

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Get Started {#chp:start}
22

3+
> I can at least listen without indignation to the critic who is of the opinion that when one surveys the aims of cultural endeavour and the means it employs, one is bound to come to the conclusion that the whole effort is not worth the trouble, and that the outcome of it can only be a state of affairs which the individual will be unable to tolerate.
4+
>
5+
> ---Sigmund Freud, _Civilization and Its Discontents_
6+
37
R Markdown documents need to be compiled to Markdown before being rendered to a
48
target output format such as HTML and LaTeX.
59

0 commit comments

Comments
 (0)