-
-
Notifications
You must be signed in to change notification settings - Fork 93
/
config.yml
46 lines (45 loc) · 1.08 KB
/
config.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
41
42
43
44
45
46
version: 2
jobs:
deploy:
machine:
image: ubuntu-2004:202201-02
enabled: true
steps:
- add_ssh_keys:
fingerprints:
- "5f:ca:3d:34:ff:30:1d:cb:ad:2f:e8:0d:e2:1a:3a:02"
- run: exit
# deployShinyio:
# docker:
# - image: bobfujp/shiny:57d0b256e9145a7a36e67ad0f932e3f059c3c19c
# steps:
# - checkout
# - run:
# name: deployToShinyIo
# command: |
# PWD=$(pwd)
# /usr/bin/R -e "rsconnect::setAccountInfo(name=\"infinityloop\", token=\"$R_TOKEN\", secret=\"$R_SECRET\"); setwd(\"$PWD\"); rsconnect::deployApp(forceUpdate=TRUE)"
deploystg:
docker:
- image: boxboat/kubectl:1.15.12
steps:
- run: |
exit
workflows:
version: 2
chk-on-stg:
jobs:
- deploystg:
filters:
branches:
only: /^de.*/
build-and-deploy:
jobs:
- deploy:
filters:
branches:
only: master
# - deployShinyio:
# filters:
# branches:
# only: master