github-action-skaffold icon indicating copy to clipboard operation
github-action-skaffold copied to clipboard

Skaffold pipeline executed as Github Action

Results 11 github-action-skaffold issues
Sort by recently updated
recently updated
newest added

``` name: Verifier e2e Test on: pull_request: paths: - 'application/services/**' jobs: e2e: runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 env: WEB_URL: http://aloco.local API_URL: http://aloco.local/api - uses: medyagh/setup-minikube@master - uses: azure/setup-helm@v3 -...

when using this action with `--file-output artifacts.json` and trying to load it into `gcloud deploy releases ...` it will fail out. After a lot of digging vs my local skaffold...

Here's my config - ``` - name: Deploy Prod uses: hiberbee/github-action-skaffold@latest with: command: deploy images: REDACTED.dkr.us-east-1.amazonaws.com/REDACTED:${{ env.SHORT_SHA }} verbosity: info kubectl-version: 1.26.3 skaffold-version: 2.4.1 profile: prod kubeconfig: /home/runner/.kube/config ``` Here's...

I'm getting this warning: > Warning: The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/

enhancement

Is it possible to use caching on the `skaffold run` command? Right now it takes a long time for me every time because all local container has to be rebuilt...

question

All default values for all args got passed to the `Skaffold` command, thus some of the commands fails with some of these arguments.. ex. `diagnose` or `deploy` fails when receives...

enhancement

Hi all, I'm using the action below and having two problems: 1. the action is not respecting the `-v debug` flag 2. The action is failing. The reason being logged...

Hi Team, **Context:** We are using`hiberbee/github-action-skaffold` action for building the artifacts. Below mentioned are the steps in our workflow **Steps:** 1. Build artifact : ```yaml - name: Skaffold Build uses:...

hello, I got an error when build image to a private repository the outputs on github action is `error retrieving insecure registries from global config: push/pull issues may exist...` my...

https://github.com/hiberbee/github-action-skaffold?tab=readme-ov-file#cli-usage "CLI usage You can use that action just to set up Skaffold and then perform actions manually. Here is code sample:" and no sample :(