Skip to content

Commit

Permalink
Release 9.5.0-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
thvu-katalon committed May 27, 2024
1 parent 7655c08 commit 1ec0837
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 8 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,14 @@ on:
push:
branches:
- master
- rel-9.5.0-dev
jobs:
run:
name: Run
runs-on: ubuntu-latest
env:
KS_VERSION: 9.4.0
KS_VERSION_TAG: 9.4.0
KS_VERSION: 9.5.0-rc3
KS_VERSION_TAG: 9.5.0-dev
steps:
- name: Checkout
uses: actions/checkout@master
Expand All @@ -21,7 +22,6 @@ jobs:
- name: Prepare
run: |
chmod u+x ./build/*.sh
./build/prevent_overwrite_existing_tag.sh $KS_VERSION
- name: Build
run: |
chmod u+x ./build/*.sh
Expand Down
2 changes: 1 addition & 1 deletion src/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM katalonstudio/ubuntu-20.04:7606921
FROM katalonstudio/ubuntu-20.04:cdb3d62

# common environment variables
ARG KATALON_ROOT_DIR=/katalon
Expand Down
6 changes: 2 additions & 4 deletions src/scripts/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,12 @@
set -xe

echo "Install Katalon"
katalon_version="$KATALON_STUDIO_VERSION"
katalon_version=$(cut -d '-' -f 1 <<< "$KATALON_STUDIO_VERSION")
katalon_directory="$version"
katalon_package="Katalon_Studio_Engine_Linux_64-$katalon_version.tar.gz"
katalon_unzipped_directory="Katalon_Studio_Engine_Linux_64-$katalon_version"
# general link
wget -O $katalon_package https://download.katalon.com/$katalon_version/Katalon_Studio_Engine_Linux_64-$katalon_version.tar.gz
wget -O $katalon_package https://download.katalon.com/$KATALON_STUDIO_VERSION/$katalon_package
# beta link
# wget -O $katalon_package https://download.katalon.com/release-beta/$katalon_version/Katalon_Studio_Engine_Linux_64-$katalon_version.tar.gz
ls
Expand All @@ -24,8 +24,6 @@ chmod -R 777 $KATALON_ROOT_DIR
chmod -R 777 $KATALON_SOFTWARE_DIR

# clean up

echo "Clean up"
apt clean all
rm -rf /var/lib/apt/lists/*
cat $KATALON_VERSION_FILE

0 comments on commit 1ec0837

Please sign in to comment.