dependabot[bot] 965f29eaf7 Bump @types/node from 14.10.0 to 14.11.2 (#12)
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 14.10.0 to 14.11.2.
- [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases)
- [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2020-10-02 01:45:02 +08:00
2020-09-25 22:14:20 +08:00
2020-09-25 12:55:49 +08:00
2020-09-25 22:16:19 +08:00
2020-09-25 22:16:19 +08:00
2020-03-31 02:33:37 +08:00
2020-09-25 10:47:06 +08:00
2020-03-31 02:33:37 +08:00
2020-03-31 02:33:37 +08:00
2020-03-31 02:33:37 +08:00
2020-09-25 22:14:20 +08:00
2019-09-05 02:03:51 +08:00
2020-03-31 03:04:29 +08:00
2020-03-31 02:33:37 +08:00

TLDR

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%