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 308bec8 commit b89ec1dCopy full SHA for b89ec1d
.github/workflows/r-ci.yml
@@ -35,11 +35,17 @@ jobs:
35
- name: Install linux dependencies
36
run: |
37
sudo apt-get install libcurl4-openssl-dev
38
+ - name: Get month
39
+ id: get-month
40
+ run: |
41
+ echo "::set-output name=month::$(/bin/date -u "+%Y%m")"
42
- name: Cache R packages
43
uses: actions/cache@v2
44
with:
45
path: ${{ env.R_LIBS_USER }}
- key: ${{ runner.os }}-r-facebook-survey-
46
+ key: ${{ runner.os }}-r-facebook-survey-${{ steps.get-month.outputs.month }}
47
+ restore-keys: |
48
+ ${{ runner.os }}-r-facebook-survey-
49
- name: Install R dependencies
50
51
install.packages("remotes")
0 commit comments