Compare commits
7 Commits
v0.1.4
...
b7bc477d2e
Author | SHA1 | Date | |
---|---|---|---|
b7bc477d2e | |||
ab11665665 | |||
37468b6785 | |||
471767c4ed | |||
596baba5ef | |||
12390031f9 | |||
daed8c1462 |
@@ -2,11 +2,16 @@ name: Gitea CI/CD
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
workflow_dispatch:
|
workflow_dispatch:
|
||||||
push:
|
#push:
|
||||||
branches: [ "development", "main", "staging"]
|
#branches: [ "development", "main", "staging"]
|
||||||
tags: [ "v*.*.*" ]
|
#tags: [ "v*.*.*" ]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [ "development", "main", "staging" ]
|
branches: [ "development", "main", "staging" ]
|
||||||
|
tags: [ "v*.*.*" ]
|
||||||
|
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
packages: write
|
||||||
|
|
||||||
env:
|
env:
|
||||||
DOTNET_VERSION: '8.0.x'
|
DOTNET_VERSION: '8.0.x'
|
||||||
@@ -46,6 +51,8 @@ jobs:
|
|||||||
tag_name: ${{ steps.set_tag.outputs.tag_name }}
|
tag_name: ${{ steps.set_tag.outputs.tag_name }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Determine next semantic version tag
|
- name: Determine next semantic version tag
|
||||||
id: set_tag
|
id: set_tag
|
||||||
@@ -75,6 +82,7 @@ jobs:
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
new_tag="v${major}.${minor}.${patch}"
|
new_tag="v${major}.${minor}.${patch}"
|
||||||
|
echo "Creating new version tag: ${new_tag}"
|
||||||
echo "tag_name=${new_tag}" >> $GITHUB_OUTPUT
|
echo "tag_name=${new_tag}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
docker-build-and-push:
|
docker-build-and-push:
|
||||||
@@ -109,15 +117,31 @@ jobs:
|
|||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
with:
|
with:
|
||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
- name: Set up Git user
|
- name: Check if tag already exists
|
||||||
|
id: check_tag
|
||||||
run: |
|
run: |
|
||||||
git config user.name "GitHub Actions"
|
git fetch --tags
|
||||||
git config user.email "actions@github.com"
|
if git rev-parse "${{ needs.set-tag.outputs.tag_name }}" >/dev/null 2>&1; then
|
||||||
|
echo "Tag ${{ needs.set-tag.outputs.tag_name }} already exists!"
|
||||||
|
echo "exists=true" >> $GITHUB_OUTPUT
|
||||||
|
else
|
||||||
|
echo "Tag ${{ needs.set-tag.outputs.tag_name }} does not exist"
|
||||||
|
echo "exists=false" >> $GITHUB_OUTPUT
|
||||||
|
fi
|
||||||
|
|
||||||
- name: Create and push tag
|
- name: Create and push tag
|
||||||
env:
|
if: steps.check_tag.outputs.exists == 'false'
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
run: |
|
run: |
|
||||||
|
echo "Creating new tag: ${{ needs.set-tag.outputs.tag_name }}"
|
||||||
|
git config user.name "GitHub Actions"
|
||||||
|
git config user.email "actions@github.com"
|
||||||
git tag ${{ needs.set-tag.outputs.tag_name }}
|
git tag ${{ needs.set-tag.outputs.tag_name }}
|
||||||
git push origin ${{ needs.set-tag.outputs.tag_name }}
|
git push origin ${{ needs.set-tag.outputs.tag_name }}
|
||||||
|
echo "Tag created and pushed successfully"
|
||||||
|
|
||||||
|
- name: Skip tag creation
|
||||||
|
if: steps.check_tag.outputs.exists == 'true'
|
||||||
|
run: |
|
||||||
|
echo "Skipping tag creation - ${{ needs.set-tag.outputs.tag_name }} already exists"
|
Reference in New Issue
Block a user