From 63f417ddf8ce913714681c991bfd24f69fa27b2e Mon Sep 17 00:00:00 2001 From: Alan Wang <22178748+wanghalan@users.noreply.github.com> Date: Thu, 29 Feb 2024 00:12:33 -0500 Subject: [PATCH] patch: no zip, just copy the plain one --- .github/workflows/create_renv_zip.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/.github/workflows/create_renv_zip.yml b/.github/workflows/create_renv_zip.yml index 3dca433..e4942a2 100644 --- a/.github/workflows/create_renv_zip.yml +++ b/.github/workflows/create_renv_zip.yml @@ -45,16 +45,13 @@ jobs: - name: List files run: | ls -la - - name: Save zip - run: | - zip -r renv.zip renv - name: Commit files # Commit changes. You need to do this so child sites work... - working-directory: parent/${{ github.event.repository.name }} + working-directory: ${{ github.event.repository.name }} run: | ls -la git config --local user.email "actions@github.com" git config --local user.name "GitHub Actions" git add -A - git commit -m "generating dashboard" + git commit -m "saving renv" git push