Skip to content

Commit

Permalink
Remove S3 method
Browse files Browse the repository at this point in the history
  • Loading branch information
kenariosz committed Feb 12, 2025
1 parent b334943 commit 471392c
Showing 1 changed file with 15 additions and 15 deletions.
30 changes: 15 additions & 15 deletions start_shop/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -63,23 +63,23 @@ inputs:
runs:
using: "composite"
steps:
- name: Load cached shop from S3
if: ${{ inputs.runs_on != '"ubuntu-latest"'}}
id: load_installed_shop
uses: tespkg/actions-cache/restore@v1
with:
path: |
./*
key: ${{ inputs.cached_shop }}
restore-keys: |
${{ inputs.cached_shop }}
endpoint: ${{ inputs.cache_endpoint }}
accessKey: ${{ inputs.cache_access_key }}
secretKey: ${{ inputs.cache_secret_key }}
bucket: ${{ inputs.cache_bucket }}
# - name: Load cached shop from S3

Check warning on line 66 in start_shop/action.yaml

View workflow job for this annotation

GitHub Actions / yamllint

66:1 [comments-indentation] comment not indented like content
# if: ${{ inputs.runs_on != '"ubuntu-latest"'}}
# id: load_installed_shop
# uses: tespkg/actions-cache/restore@v1
# with:
# path: |
# ./*
# key: ${{ inputs.cached_shop }}
# restore-keys: |
# ${{ inputs.cached_shop }}
# endpoint: ${{ inputs.cache_endpoint }}
# accessKey: ${{ inputs.cache_access_key }}
# secretKey: ${{ inputs.cache_secret_key }}
# bucket: ${{ inputs.cache_bucket }}

- name: Load cached testplan from Github
if: ${{ inputs.runs_on == '"ubuntu-latest"'}}
# if: ${{ inputs.runs_on == '"ubuntu-latest"'}}

Check warning on line 82 in start_shop/action.yaml

View workflow job for this annotation

GitHub Actions / yamllint

82:1 [comments-indentation] comment not indented like content
id: load_installed_shop
uses: actions/cache/restore@v4
with:
Expand Down

0 comments on commit 471392c

Please sign in to comment.