@codefresh-io/kube-integration 1.30.6 → 1.31.0-api

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,6 @@
1
+ ## What
2
+
3
+ ## Why
4
+
5
+ ## Notes
6
+ <!-- Add any notes here -->
@@ -0,0 +1,8 @@
1
+ name-template: '$RESOLVED_VERSION'
2
+ tag-template: '$RESOLVED_VERSION'
3
+ change-template: '- $TITLE @$AUTHOR (#$NUMBER)'
4
+ change-title-escapes: '\<*_&' # You can add # and @ to disable mentions, and add ` to disable code blocks.
5
+ template: |
6
+ ## Changes
7
+
8
+ $CHANGES
@@ -0,0 +1,33 @@
1
+ ## Reference: https://github.com/release-drafter/release-drafter
2
+ name: Create Release
3
+
4
+ on:
5
+ push:
6
+ branches:
7
+ - master
8
+
9
+ jobs:
10
+ create_release:
11
+ name: Create Release
12
+ runs-on: ubuntu-latest
13
+ steps:
14
+ - name: Checkout
15
+ uses: actions/checkout@v3
16
+ with:
17
+ fetch-depth: 0
18
+
19
+ - name: Set up YQ
20
+ uses: frenck/action-setup-yq@v1
21
+
22
+ - name: Get release version from service.yaml
23
+ run: |
24
+ RELEASE_VERSION=$(yq eval '.version' service.yaml )
25
+ echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV
26
+
27
+ - uses: release-drafter/release-drafter@v5
28
+ env:
29
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
30
+ with:
31
+ publish: true
32
+ version: ${{ env.RELEASE_VERSION }}
33
+ config-name: release-drafter.yaml
package/Dockerfile CHANGED
@@ -1,4 +1,4 @@
1
- FROM --platform=$BUILDPLATFORM node:16.20.2-alpine
1
+ FROM --platform=$BUILDPLATFORM node:18.18.0-alpine
2
2
 
3
3
  ARG TARGETPLATFORM
4
4
  ARG TARGETARCH
package/package.json CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.30.6",
2
+ "version": "1.31.0-api",
3
3
  "name": "@codefresh-io/kube-integration",
4
4
  "main": "index.js",
5
5
  "description": "",
@@ -19,7 +19,7 @@
19
19
  "url": "git+https://github.com/codefresh-io/kube-integration.git"
20
20
  },
21
21
  "engines": {
22
- "node": "^16.20.2"
22
+ "node": "^18.18.0"
23
23
  },
24
24
  "author": "Oleg Sucharevich <olegs@codefresh.io>",
25
25
  "license": "ISC",
package/service.yaml CHANGED
@@ -1 +1 @@
1
- version: 1.30.6
1
+ version: 1.31.0