Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: refactoring s3 cache action #59

Merged
merged 2 commits into from
Apr 18, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
runs-on: ${{ inputs.os }}
steps:
- name: 📦 Check out the codebase
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
uses: actions/checkout@v4

- name: 🛠️ Install goss and dgoss
uses: e1himself/[email protected]
Expand Down Expand Up @@ -93,7 +93,7 @@ jobs:
- name: 🚀 Build image and push to docker-hub for "${{ inputs.image-platform }}"
uses: docker/build-push-action@v5
with:
context: ${{ inputs.image-template-path }}/${{ inputs.image-template }}
context: '${{ inputs.image-template-path }}/${{ inputs.image-template }}'
platforms: ${{ inputs.image-platform }}
push: ${{ inputs.push-to-hub == true }}
tags: ${{ steps.meta.outputs.tags }}
Expand All @@ -107,3 +107,5 @@ jobs:
export IMAGE_TEMPLATE=${{ inputs.image-template }}
export IMAGE_TAG=${{ inputs.image-namespace }}:${{ inputs.image-template }}-${{ inputs.image-version }}
make test

...
2 changes: 1 addition & 1 deletion .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
runs-on: ${{ inputs.os }}
steps:
- name: 📦 Check out the codebase
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4
uses: actions/checkout@v4
with:
fetch-depth: 0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/triage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ name: 🏷️ Add labels

jobs:
label:
uses: wayofdev/gh-actions/.github/workflows/apply-labels.yml@master
uses: wayofdev/gh-actions/.github/workflows/apply-labels.yml@v2.0.0
with:
os: ubuntu-latest
secrets:
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ Check each action's README file for detailed instructions on how to use it.
| [`actions/phive/install`](./actions/phive/install/README.md) | Install dependencies with [Phive](https://phar.io). |
| [`actions/playwright/install`](./actions/playwright/install/README.md) | Installs [Playwright](https://playwright.dev/) along with its dependencies. |
| [`actions/pnpm/install`](./actions/pnpm/install/README.md) | Installs mono-repository dependencies using [PNPM](https://pnpm.io/). |
| [`actions/s3/cache`](./actions/s3/cache/README.md) | Cache artifacts, or restore them using S3. |

<br>

Expand Down
151 changes: 0 additions & 151 deletions actions/s3-cache/README.md

This file was deleted.

38 changes: 0 additions & 38 deletions actions/s3-cache/action.yaml

This file was deleted.

Loading