diff --git a/README.md b/README.md index ad289a9..6223b1e 100644 --- a/README.md +++ b/README.md @@ -42,11 +42,9 @@ steps: uses: actions/checkout@v3 - name: Setup dctl CLI - uses: deployplex/dctl@0.0.11 + uses: deployplex/dctl@0.0.12 with: token: ${{ secrets.DEPLOYPLEX_TOKEN }} - # https://pypi.org/project/dctl/#history version. (Not required); Defaults to `latest` if not provided - cli-version: latest ``` ## Learn more diff --git a/action.yaml b/action.yaml index 8d7085e..1c2d4d2 100644 --- a/action.yaml +++ b/action.yaml @@ -17,7 +17,7 @@ runs: - uses: actions/setup-python@v4 with: python-version: '3.11' - - run: python3 -m pip install dctl==0.0.11 + - run: python3 -m pip install dctl==0.0.12 shell: bash - run: echo "DEPLOYPLEX_TOKEN=${{ inputs.token }}" >> $GITHUB_ENV if: ${{ inputs.token }} diff --git a/pyproject.toml b/pyproject.toml index db1786b..efd5ef5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "dctl" -version = "0.0.11" +version = "0.0.12" description = "Command Line Interface (CLI) for DeployPlex" authors = ["Alvaro Molina "] license = "Apache-2.0"