Skip to content

Commit 6d0a3d3

Browse files
authored
publish version 1.0.0 (#223)
* publish version 1.0.0 Signed-off-by: Ashima-Ashima1 <[email protected]> * publish version 1.0.0 Signed-off-by: Ashima-Ashima1 <[email protected]> * publish version 1.0.0 Signed-off-by: Ashima-Ashima1 <[email protected]> --------- Signed-off-by: Ashima-Ashima1 <[email protected]>
1 parent dc75129 commit 6d0a3d3

File tree

3 files changed

+15
-12
lines changed

3 files changed

+15
-12
lines changed

.github/workflows/release.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,15 @@ jobs:
1717

1818
env:
1919
IS_LATEST_RELEASE: 'true'
20-
APP_VERSION: 0.0.0
20+
APP_VERSION: 1.0.0
2121

2222
steps:
2323
- name: Checkout Code
2424
uses: actions/checkout@v4
2525

26+
- name: Print Go Version
27+
run: go version
28+
2629
- name: Initialize CodeQL
2730
uses: github/codeql-action/init@v3
2831
with:
@@ -56,10 +59,10 @@ jobs:
5659
uses: softprops/action-gh-release@v2
5760
with:
5861
files: |
59-
/home/runner/work/ibm-object-csi-driver/ibm-object-csi-driver/cos-csi-mounter/cos-csi-mounter-${{ env.APP_VERSION }}.tar.gz
60-
/home/runner/work/ibm-object-csi-driver/ibm-object-csi-driver/cos-csi-mounter/cos-csi-mounter-${{ env.APP_VERSION }}.tar.gz.sha256
61-
tag_name: v0.1.0
62-
name: v0.1.0
62+
/home/runner/work/ibm-object-csi-driver/ibm-object-csi-driver/cos-csi-mounter/cos-csi-mounter-${{ env.APP_VERSION }}.deb.tar.gz
63+
/home/runner/work/ibm-object-csi-driver/ibm-object-csi-driver/cos-csi-mounter/cos-csi-mounter-${{ env.APP_VERSION }}.deb.tar.gz.sha256
64+
tag_name: v1.0.0
65+
name: v1.0.0
6366
body: Generate debian package
6467
prerelease: ${{ env.IS_LATEST_RELEASE != 'true' }}
6568

.secrets.baseline

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"files": "go.sum|^.secrets.baseline$",
44
"lines": null
55
},
6-
"generated_at": "2025-06-24T06:20:31Z",
6+
"generated_at": "2025-06-24T07:43:26Z",
77
"plugins_used": [
88
{
99
"name": "AWSKeyDetector"
@@ -140,30 +140,30 @@
140140
{
141141
"hashed_secret": "62d6314bd936033553442d72fe8ce3b93ba8802d",
142142
"is_verified": false,
143-
"line_number": 323,
143+
"line_number": 324,
144144
"type": "Secret Keyword",
145145
"verified_result": null
146146
},
147147
{
148148
"hashed_secret": "39f69c278f46165447f30d10acf54277aaa3d5fc",
149149
"is_secret": false,
150150
"is_verified": false,
151-
"line_number": 459,
151+
"line_number": 460,
152152
"type": "Secret Keyword",
153153
"verified_result": null
154154
},
155155
{
156156
"hashed_secret": "f75b33f87ffeacb3a4f793a09693e672e07449ff",
157157
"is_secret": false,
158158
"is_verified": false,
159-
"line_number": 478,
159+
"line_number": 479,
160160
"type": "Secret Keyword",
161161
"verified_result": null
162162
},
163163
{
164164
"hashed_secret": "d4c3d66fd0c38547a3c7a4c6bdc29c36911bc030",
165165
"is_verified": false,
166-
"line_number": 543,
166+
"line_number": 544,
167167
"type": "Secret Keyword",
168168
"verified_result": null
169169
}

cos-csi-mounter/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
NAME := cos-csi-mounter
2-
APP_VERSION := 0.0.0
2+
APP_VERSION := 1.0.0
33
BUILD_DIR := $(NAME)-$(APP_VERSION)
44
BIN_DIR := bin
55

@@ -8,7 +8,7 @@ MAINTAINER := "IKS Storage"
88
DEB_ARCH := all
99
DESCRIPTION := "IBM cos-csi-mounter service"
1010

11-
INSTALL_TAR_FILE := "$(NAME)-$(APP_VERSION).tar.gz"
11+
INSTALL_TAR_FILE := "$(NAME)-$(APP_VERSION).deb.tar.gz"
1212
CHECKSUM_FILE := "$(INSTALL_TAR_FILE).sha256"
1313

1414
test:

0 commit comments

Comments
 (0)