Skip to content

Commit

Permalink
Removing renv caching from deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbielby committed Sep 13, 2024
1 parent e7dab81 commit 19d2e57
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 43 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/deploy-shiny.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,6 @@ jobs:
if: endsWith(github.ref, '/main')
run: |
echo "SHINYAPP_NAME='ks5-transition-matrices'">> $GITHUB_ENV
- name: Cache R packages
if: runner.os != 'Windows'
uses: actions/cache@v1
with:
path: ${{ env.R_LIBS_USER }}
key: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-${{ hashFiles('.github/depends.Rds') }}
restore-keys: ${{ runner.os }}-${{ hashFiles('.github/R-version') }}-1-
- name: Install odbc dependencies
run: sudo apt-get install unixodbc-dev
Expand Down
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
.Rhistory
.RData
.Ruserdata
/SQL_production/TM_data_issues.docx
/SQL_production/TM_data_issues.docx
35 changes: 0 additions & 35 deletions R/standard_panels.R
Original file line number Diff line number Diff line change
Expand Up @@ -36,38 +36,3 @@ accessibility_panel <- function() {
)
)
}

support_links <- function() {
tabPanel(
"Support and feedback",
gov_main_layout(
gov_row(
column(
width = 12,
h2("Give us feedback"),
"If you spot any errors or bugs while using this dashboard, please screenshot and email them to ",
a(href = "mailto:[email protected]", "[email protected]", .noWS = c("after")), ".",
br(),
h2("Find more information on the data"),
"The data used to produce the dashboard, along with methodological information can be found on ",
a(href = "https://explore-education-statistics.service.gov.uk/", "Explore Education Statistics", .noWS = c("after")),
".",
br(),
h2("Contact us"),
"If you have questions about the dashboard or data within it, please contact us at ",
a(href = "mailto:[email protected]", "[email protected]", .noWS = c("after")), br(),
h2("See the source code"),
"The source code for this dashboard is available in our ",
a(href = "https://github.com/dfe-analytical-services/ks5-transition-matrices", "GitHub repository", .noWS = c("after")),
".",
br(),
br(),
br(),
br(),
br(),
br()
)
)
)
)
}

0 comments on commit 19d2e57

Please sign in to comment.