Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 10 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:

env:
IS_LATEST_RELEASE: 'true'
APP_VERSION: 1.0.3
APP_VERSION: 1.0.4

steps:
- name: Checkout Code
Expand Down Expand Up @@ -63,9 +63,15 @@ jobs:
/home/runner/work/ibm-object-csi-driver/ibm-object-csi-driver/cos-csi-mounter/cos-csi-mounter-${{ env.APP_VERSION }}.deb.tar.gz.sha256
/home/runner/work/ibm-object-csi-driver/ibm-object-csi-driver/cos-csi-mounter/cos-csi-mounter-${{ env.APP_VERSION }}.rpm.tar.gz
/home/runner/work/ibm-object-csi-driver/ibm-object-csi-driver/cos-csi-mounter/cos-csi-mounter-${{ env.APP_VERSION }}.rpm.tar.gz.sha256
tag_name: v1.0.3
name: v1.0.3
## body:
tag_name: v1.0.4
name: v1.0.4
body: |
## 🚀 What’s New
- Enable --vfs-cache-mode flag for rclone mount to support random write
- Update golang dependencies
- Fetch IAM Endpoint Dynamically
- Add TLS cipher suites in the mount options
- Fix issue with s3fs mount randomly taking time using IAM credentials on Private VPC clusters
prerelease: ${{ env.IS_LATEST_RELEASE != 'true' }}

- name: Perform CodeQL Analysis
Expand Down
2 changes: 1 addition & 1 deletion cos-csi-mounter/Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
NAME := cos-csi-mounter
APP_VERSION := 1.0.3
APP_VERSION := 1.0.4
BUILD_DIR := $(NAME)-$(APP_VERSION)
BIN_DIR := bin

Expand Down