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 ec03773 commit 73ee1f2Copy full SHA for 73ee1f2
.github/workflows/deploy-shiny.yml
@@ -0,0 +1,29 @@
1
+on:
2
+ push:
3
+ branches:
4
+ - main
5
+
6
+name: Deploy template app to shinyapps.io
7
8
+jobs:
9
+ deploy-shiny:
10
+ name: Deploy to shinyapps.io
11
+ runs-on: ubuntu-latest
12
+ env:
13
+ GITHUB_PAT: ${{ secrets.ACCESS_TOKEN }}
14
+ ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
15
16
+ steps:
17
+ - name: 🛎️ Checkout repository
18
+ uses: actions/checkout@v4
19
+ with:
20
+ fetch-depth: 0
21
+ - id: deploy
22
+ name: 💎 Deploy to shinyapps.io
23
+ uses: qwert666/shinyapps-actions@main
24
25
+ SHINY_USERNAME: ${{ secrets.SHINYAPPS_ACCOUNT }}
26
+ SHINY_TOKEN: ${{ secrets.SHINYAPPS_TOKEN }}
27
+ SHINY_SECRET: ${{ secrets.SHINYAPPS_SECRET }}
28
+ APP_NAME: 'markov_example'
29
0 commit comments