Skip to content

Commit

Permalink
ci: fix tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Giuncan committed Mar 29, 2024
1 parent 9115926 commit de14b9d
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,16 +43,16 @@ jobs:
- '2.2.7'
image:
- false
# include:
# - os: macos-latest
# turbovnc-version: 'none'
# image: false
# - os: ubuntu-latest
# turbovnc-version: '3.1'
# image: 'ubuntu-18.04'
# - os: ubuntu-latest
# turbovnc-version: '2.2.7'
# image: 'ubuntu-18.04'
include:
- os: macos-latest
turbovnc-version: 'none'
image: false
- os: ubuntu-latest
turbovnc-version: '3.1'
image: 'ubuntu-18.04'
- os: ubuntu-latest
turbovnc-version: '2.2.7'
image: 'ubuntu-18.04'

# The type of runner that the job will run on
runs-on: ${{ matrix.os }}
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
uses: actions/[email protected]
id: cache-pyenv
with:
path: .pyenv
path: ${{ env.RCM_CHECKOUT }}/.pyenv
key: pyenv-${{ env.PYENV_VERSION }}-python-${{ env.PYTHON_VERSION }}-${{ matrix.os }}

# PYTHON
Expand Down Expand Up @@ -247,12 +247,12 @@ jobs:
if: ${{ env.IS_CD }}
run: |
cd ${{ env.RCM_CHECKOUT }}
git tag -f ${{ env.tag }}
git tag -f ${{ env.TAG }}
git push origin --tags -f
# Clean release if exists
if gh release list | awk '{print $1}' | grep -q "^${{ env.tag }}$"; then
gh release delete ${{ env.tag }}
if gh release list | awk '{print $1}' | grep -q "^${{ env.TAG }}$"; then
gh release delete ${{ env.TAG }}
fi
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down Expand Up @@ -285,16 +285,16 @@ jobs:
- '2.2.7'
image:
- false
# include:
# - os: macos-latest
# turbovnc-version: 'none'
# image: false
# - os: ubuntu-latest
# turbovnc-version: '3.1'
# image: 'ubuntu-18.04'
# - os: ubuntu-latest
# turbovnc-version: '2.2.7'
# image: 'ubuntu-18.04'
include:
- os: macos-latest
turbovnc-version: 'none'
image: false
- os: ubuntu-latest
turbovnc-version: '3.1'
image: 'ubuntu-18.04'
- os: ubuntu-latest
turbovnc-version: '2.2.7'
image: 'ubuntu-18.04'

# The type of runner that the job will run on
runs-on: ubuntu-latest
Expand Down

0 comments on commit de14b9d

Please sign in to comment.