From 961184a7339cff7627497ce3e58df9c37b8b8ecd Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Wed, 9 Aug 2023 16:06:31 +0700 Subject: [PATCH] docs: update version to v1.3.0 in the readme file (#61) --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0901832..1484b79 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ jobs: uses: actions/checkout@v3.5.3 - name: Configure the project - uses: threeal/cmake-action@v1.2.0 + uses: threeal/cmake-action@v1.3.0 - name: Build the project runs: cmake --build build @@ -70,13 +70,13 @@ jobs: runs: ctest --test-dir build ``` -> **Note**: You can replace [`v1.2.0`](https://github.com/threeal/cmake-action/releases/tag/v1.2.0) with any version you prefer. See [this](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsuses). +> **Note**: You can replace [`v1.3.0`](https://github.com/threeal/cmake-action/releases/tag/v1.3.0) with any version you prefer. See [this](https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#jobsjob_idstepsuses). #### Configure, Build, and Test in the Same Step ```yaml - name: Configure, build, and test the project - uses: threeal/cmake-action@v1.2.0 + uses: threeal/cmake-action@v1.3.0 with: run-build: true run-test: true @@ -86,7 +86,7 @@ jobs: ```yaml - name: Configure the project - uses: threeal/cmake-action@v1.2.0 + uses: threeal/cmake-action@v1.3.0 with: source-dir: submodules build-dir: submodules/out @@ -96,7 +96,7 @@ jobs: ```yaml - name: Configure the project - uses: threeal/cmake-action@v1.2.0 + uses: threeal/cmake-action@v1.3.0 with: generator: Ninja c-compiler: clang