mirror of
https://github.com/creyD/creyPY.git
synced 2026-04-15 04:40:36 +02:00
fix: fix attempt for the github pipeline
This commit is contained in:
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
@@ -74,11 +74,11 @@ jobs:
|
|||||||
release-branch: ${{ github.head_ref }}
|
release-branch: ${{ github.head_ref }}
|
||||||
|
|
||||||
- name: Create Tag
|
- name: Create Tag
|
||||||
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/dev'
|
if: github.head_ref == 'master' || github.head_ref == 'dev'
|
||||||
run: |
|
run: |
|
||||||
if [ "${{ github.ref }}" == "refs/heads/master" ]; then
|
if [ "${{ github.head_ref }}" == "master" ]; then
|
||||||
git tag ${{ steps.git_version.outputs.version }}
|
git tag ${{ steps.git_version.outputs.version }}
|
||||||
elif [ "${{ github.ref }}" == "refs/heads/dev" ]; then
|
elif [ "${{ github.head_ref }}" == "dev" ]; then
|
||||||
git tag ${{ steps.git_version.outputs.version }}-rc
|
git tag ${{ steps.git_version.outputs.version }}-rc
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user