Skip to content

Commit

Permalink
create-kpt-functions@0.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
frankfarzan committed Jan 23, 2020
1 parent bf35a37 commit ca9cd06
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 4 deletions.
17 changes: 16 additions & 1 deletion .github/workflows/release-create-kpt-functions.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,23 @@ on:
jobs:
node-ci:
runs-on: ubuntu-latest
env:
GOPATH: /home/runner/work/kpt-functions-sdk/go
GO111MODULE: off
steps:
- uses: actions/checkout@v1
- name: Set up Go 1.13
uses: actions/setup-go@v1
with:
go-version: 1.13
id: go
- name: Check out code into GOPATH
uses: actions/checkout@v1
with:
path: go/src/github.com/${{ github.repository }}
- name: Build, Test, Lint
run: |
cd go
make publish-typegen
- name: Use Node.js 12.x
uses: actions/setup-node@v1
with:
Expand Down
4 changes: 2 additions & 2 deletions ts/create-kpt-functions/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@googlecontainertools/create-kpt-functions",
"version": "0.12.0",
"version": "0.13.0",
"description": "KPT functions CLI",
"author": "KPT Authors",
"license": "Apache-2.0",
Expand All @@ -22,7 +22,7 @@
"prepare": "npm run build",
"build": "tsc",
"watch": "tsc --watch",
"prepublishOnly": "npm test && npm run lint",
"prepublishOnly": "ls bin/typegen_darwin_amd64 bin/typegen_linux_amd64 bin/typegen_windows_amd64",
"clean": "rm -Rf node_modules/ dist/",
"lint": "tslint -p package.json; prettier \"src/**\" \"*.json\" --check",
"lint-license": "license-checker --onlyAllow 'Apache-2.0;MIT;BSD;BSD-2-Clause;BSD-3-Clause;ISC;CC-BY-3.0;CC0-1.0;Unlicense'",
Expand Down
2 changes: 1 addition & 1 deletion ts/create-kpt-functions/templates/package.json.mustache
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"kpt:type-create": "kpt type-create"
},
"dependencies": {
"@googlecontainertools/kpt-functions": "^0.10.0"
"@googlecontainertools/kpt-functions": "^0.13.0"
},
"devDependencies": {
"@googlecontainertools/create-kpt-functions": "^0.12.0",
Expand Down

0 comments on commit ca9cd06

Please # to comment.