mirror of
https://github.com/imranismail/setup-kustomize.git
synced 2026-05-17 10:15:23 +00:00
9f90af1b02e12b1dbf7a61d202434066314d3079
Bumps [@vercel/ncc](https://github.com/vercel/ncc) from 0.25.1 to 0.33.3. - [Release notes](https://github.com/vercel/ncc/releases) - [Commits](https://github.com/vercel/ncc/compare/0.25.1...0.33.3) --- updated-dependencies: - dependency-name: "@vercel/ncc" dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
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.0Defaults 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
Languages
TypeScript
97.7%
JavaScript
2.3%