-
Notifications
You must be signed in to change notification settings - Fork 0
40 lines (37 loc) · 1.09 KB
/
docker_action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
# This is a basic workflow to help you get started with Actions
name: docker_action:0.0
on:
push:
branches:
- 'master'
workflow_dispatch:
schedule:
# * is a special character in YAML so you have to quote this string : weekly,Sunday,10:00 #m h d/m m d/w
- cron: '00 10 * * 0'
jobs:
docker-run-action:
runs-on: ubuntu-latest
container:
image: tamboraorg/crecoding:2020.0
env:
NODE_ENV: development
ports:
- 80
volumes:
- ${{ github.workspace }}:/cre/R
steps:
- uses: actions/checkout@v3
- name: Set ownership
run: |
# this is to fix GIT not liking owner of the checkout dir
chown -R $(id -u):$(id -g) $PWD
# with:
# ref: master
## - name: Install pandoc
## run: (apt-get -y --no-install-recommends install pandoc)
## - name: Install markdown
## run: (R -e "install.packages('rmarkdown')")
- name: Run knitr
run: (R -e "rmarkdown::render('/cre/R/README.Rmd')")
- name: Submit changes
uses: EndBug/add-and-commit@v9