Skip to content

Commit

Permalink
Correct the regex to get version tag from tag (#525)
Browse files Browse the repository at this point in the history
  • Loading branch information
unkcpz authored Oct 22, 2023
1 parent 4f505af commit 6670d96
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 20 deletions.
8 changes: 0 additions & 8 deletions .github/actions/create-dev-env/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,15 +21,7 @@ runs:
python-version: 3.x

- name: Install Dev Dependencies 📦
if: ${{ inputs.architecture == 'amd64' }}
run: |
pip install --upgrade pip
pip install --upgrade -r docker/requirements-dev.txt
shell: bash

- name: Install Dev Dependencies 📦
if: ${{ inputs.architecture == 'arm64' }}
run: |
pip install --upgrade pip
pip install --upgrade -r docker/requirements-dev-arm64.txt
shell: bash
2 changes: 1 addition & 1 deletion .github/workflows/docker-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ jobs:
type=edge,enable={{is_default_branch}}
type=sha,enable=${{ github.ref_type != 'tag' }}
type=ref,event=pr
type=match,pattern=v(\d{4}\.\d{4}),group=1
type=match,pattern=v(\d{2}\.\d{2}.\d+.*),group=1
type=raw,value={{tag}},enable=${{ startsWith(github.ref, 'refs/tags/v') }}
type=raw,value=qe-${{ env.QE_VERSION }},enable=${{ startsWith(github.ref, 'refs/tags/v') }}
Expand Down
11 changes: 0 additions & 11 deletions docker/requirements-dev-arm64.txt

This file was deleted.

0 comments on commit 6670d96

Please sign in to comment.