Skip to content

Commit

Permalink
fix: CI with + character in unyc versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Edouard Lavaud authored and k-ribot committed Mar 21, 2023
1 parent d060903 commit 80740e2
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ jobs:
- name: "Setup environment"
uses: "networktocode/gh-action-setup-poetry-environment@v2"
- name: "Get image version"
run: "echo IMAGE_VER=`poetry version -s`-py${{ matrix.python-version }} >> $GITHUB_ENV"
run: "echo IMAGE_VER=`poetry version -s`-py${{ matrix.python-version }} | tr '+' '.' >> $GITHUB_ENV"
- name: "Set up Docker Buildx"
id: "buildx"
uses: "docker/setup-buildx-action@v1"
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:
- name: "Setup environment"
uses: "networktocode/gh-action-setup-poetry-environment@v2"
- name: "Get image version"
run: "echo IMAGE_VER=`poetry version -s`-py${{ matrix.python-version }} >> $GITHUB_ENV"
run: "echo IMAGE_VER=`poetry version -s`-py${{ matrix.python-version }} | tr '+' '.' >> $GITHUB_ENV"
- name: "Set up Docker Buildx"
id: "buildx"
uses: "docker/setup-buildx-action@v1"
Expand Down Expand Up @@ -164,7 +164,7 @@ jobs:
- name: "Setup environment"
uses: "networktocode/gh-action-setup-poetry-environment@v2"
- name: "Get image version"
run: "echo IMAGE_VER=`poetry version -s`-py${{ matrix.python-version }} >> $GITHUB_ENV"
run: "echo IMAGE_VER=`poetry version -s`-py${{ matrix.python-version }} | tr '+' '.' >> $GITHUB_ENV"
- name: "Set up Docker Buildx"
id: "buildx"
uses: "docker/setup-buildx-action@v1"
Expand Down

0 comments on commit 80740e2

Please sign in to comment.