mirror of
https://github.com/imranismail/setup-kustomize.git
synced 2026-05-17 10:15:23 +00:00
0b4205889c0550531912e2499540c29012c44259
Bumps [jest-circus](https://github.com/facebook/jest/tree/HEAD/packages/jest-circus) from 26.4.2 to 26.5.3. - [Release notes](https://github.com/facebook/jest/releases) - [Changelog](https://github.com/facebook/jest/blob/master/CHANGELOG.md) - [Commits](https://github.com/facebook/jest/commits/v26.5.3/packages/jest-circus) 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
Usage
on:
push:
branches:
- master
jobs:
create-deployment-branch:
runs-on: ubuntu-latest
needs:
- publish-image
steps:
- uses: imranismail/setup-kustomize@v1
with:
kustomize-version: "3.1.0"
- run: git clone https://${REPO_TOKEN}@github.com/org/deployment.git .
env:
REPO_TOKEN: ${{secrets.REPO_TOKEN}}
- run: git branch deployment/app/${GITHUB_REF/refs\/heads\//}
- run: kustomize edit set image app:${GITHUB_SHA}
- run: git add .
- run: git commit -m "Set `app` image tag to `${GITHUB_SHA}`"
- run: git push origin deployment/app/${GITHUB_REF/refs\/heads\//}
Languages
TypeScript
97.7%
JavaScript
2.3%