Skip to content

Commit

Permalink
Update action.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
arnol377 committed Oct 30, 2024
1 parent c5357bd commit 848ce70
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ runs:
if: ${{ inputs.workspace != '' }}
with:
source: .terraform
bucket: image-pipeline-assets
bucket: ${{ inputs.cache_bucket }}
archive: true
key: ${{ github.repository }}/${{ inputs.workspace }}/${{ steps.uuid.outputs.uuid }}/terraform-dir

Expand All @@ -100,7 +100,7 @@ runs:
if: ${{ inputs.workspace == '' }}
with:
source: .terraform
bucket: image-pipeline-assets
bucket: ${{ inputs.cache_bucket }}
archive: true
key: ${{ github.repository }}/${{ steps.uuid.outputs.uuid }}/terraform-dir

Expand All @@ -109,7 +109,7 @@ runs:
if: ${{ inputs.workspace != '' }}
with:
source: .terraform.lock.hcl
bucket: image-pipeline-assets
bucket: ${{ inputs.cache_bucket }}
archive: false
key: ${{ github.repository }}/${{ inputs.workspace }}/${{ steps.uuid.outputs.uuid }}/terraform.lock.hcl

Expand All @@ -118,7 +118,7 @@ runs:
if: ${{ inputs.workspace == '' }}
with:
source: .terraform.lock.hcl
bucket: image-pipeline-assets
bucket: ${{ inputs.cache_bucket }}
archive: false
key: ${{ github.repository }}/${{ steps.uuid.outputs.uuid }}/terraform.lock.hcl

Expand Down

0 comments on commit 848ce70

Please sign in to comment.