Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
^\.vscode$
^\.deps$
^autobrew$
^cleanup$
^CRAN-SUBMISSION$
^\.gitpod\.yml$
^\.gitpod\.Dockerfile$
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ghcr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ jobs:
uses: docker/build-push-action@fdf7f43ecf7c1a5c7afe936410233728a8c2d9c2
with:
context: .
cache-from: ${{ ( github.event_name != 'schedule' || github.event_name != 'workflow_dispatch' ) && 'type=gha' || '' }}
cache-from: ${{ ( github.event_name != 'schedule' && github.event_name != 'workflow_dispatch' ) && 'type=gha' || '' }}
cache-to: type=gha,mode=max
push: true
tags: ${{ steps.meta.outputs.tags }}
Expand Down
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ tests/testthat/testthat-problems.rds
configure.log
.deps/
autobrew
cleanup
.vscode
.Renviron
CRAN-SUBMISSION
Expand Down
2 changes: 2 additions & 0 deletions cleanup
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
#!/bin/sh
rm -f src/Makevars configure.log
Loading