Skip to content

Commit

Permalink
Merge pull request #1313 from opentofu/fix-rclone-installation
Browse files Browse the repository at this point in the history
Adding apt-get update to fix rclone installation problem
  • Loading branch information
abstractionfactory authored Nov 21, 2024
2 parents 0aa645f + 4822cb9 commit 5441c06
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/generate-and-deploy-recent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
cache-dependency-path: './src/go.sum'

- name: Setup dependencies
run: sudo apt-get install rclone
run: sudo apt-get update && sudo apt-get install rclone

- name: Prune modules and providers to only modified in the past 100 commits
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-and-deploy-with-delete.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
cache-dependency-path: './src/go.sum'

- name: Setup dependencies
run: sudo apt-get install rclone
run: sudo apt-get update && sudo apt-get install rclone

- name: Run Generation script
working-directory: ./src
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/generate-and-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
cache-dependency-path: './src/go.sum'

- name: Setup dependencies
run: sudo apt-get install rclone
run: sudo apt-get update && sudo apt-get install rclone

- name: Run Generation script
working-directory: ./src
Expand Down

0 comments on commit 5441c06

Please sign in to comment.