Skip to content

Commit

Permalink
bump version 3 4 1 (#4)
Browse files Browse the repository at this point in the history
* [FIX] workflow conan fix (#3)

* bump version 3.4.1
  • Loading branch information
edwardstock committed Mar 23, 2024
1 parent 6cab60c commit 6267ab1
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 4 deletions.
12 changes: 10 additions & 2 deletions .github/actions/setup-conan/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,14 @@ inputs:
required: true
description: "Artifactory API key"

artifactory_repo:
required: true
description: "Artifactory repository api url"

artifactory_user:
required: true
description: "Artifactory user"

runs:
using: composite
steps:
Expand All @@ -15,5 +23,5 @@ runs:
pip install --upgrade pip
pip install conan
conan profile detect --force
conan remote add edwardstock https://conan.edwardstock.com/artifactory/api/conan/conan-local
conan remote login -p ${{ inputs.artifactory_api_key }} edwardstock admin
conan remote add edwardstock ${{ inputs.artifactory_repo }}
conan remote login -p ${{ inputs.artifactory_api_key }} edwardstock ${{ inputs.artifactory_user }}
2 changes: 2 additions & 0 deletions .github/workflows/build_conan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,8 @@ jobs:
uses: ./.github/actions/setup-conan
with:
artifactory_api_key: ${{ secrets.ARTIFACTORY_API_KEY }}
artifactory_repo: ${{ vars.ARTIFACTORY_REPO_URL }}
artifactory_user: ${{ secrets.ARTIFACTORY_API_USER }}

- name: Run Tests
uses: ./.github/actions/run-tests
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/check_pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ jobs:
uses: ./.github/actions/setup-conan
with:
artifactory_api_key: ${{ secrets.ARTIFACTORY_API_KEY }}
artifactory_repo: ${{ vars.ARTIFACTORY_REPO_URL }}
artifactory_user: ${{ secrets.ARTIFACTORY_API_USER }}

- name: Run Tests
uses: ./.github/actions/run-tests
Expand All @@ -47,6 +49,8 @@ jobs:
uses: ./.github/actions/setup-conan
with:
artifactory_api_key: ${{ secrets.ARTIFACTORY_API_KEY }}
artifactory_repo: ${{ vars.ARTIFACTORY_REPO_URL }}
artifactory_user: ${{ secrets.ARTIFACTORY_API_USER }}

- name: Run Tests
uses: ./.github/actions/run-tests
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
cmake_minimum_required(VERSION 3.19)
project(toolbox
VERSION 3.4.0
VERSION 3.4.1
LANGUAGES CXX
DESCRIPTION "Toolbox - C++ helpers, especially for string and bytes handling"
)
Expand Down
2 changes: 1 addition & 1 deletion version.info
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.4.0
3.4.1

0 comments on commit 6267ab1

Please sign in to comment.