Skip to content

inway/setup-kustomize

 
 

Repository files navigation

build-test

Description

Install any kustomize version as a step in your workflow

Options

Every argument is optional.

Input Description
github-token PAT (Personal Access Token) for authorizing the repository.
Defaults to ${{ github.token }}
kustomize-version Semver of kustomize to use. Examples: 10.x, 10.15.1, >=10.15.0
Defaults to *

Usage

on:
  push:
    branches:
      - master

jobs:
  create-deployment-branch:
    runs-on: ubuntu-latest
    needs:
      - publish-image
    steps:
      - uses: imranismail/setup-kustomize@v1
      - run: |
          kustomize edit set image app:${GITHUB_SHA}
          git add .
          git commit -m "Set `app` image tag to `${GITHUB_SHA}`"
          git push

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Sponsor this project

 

Packages

No packages published

Languages

  • TypeScript 97.0%
  • JavaScript 3.0%