Update .github/workflows/increase-version.yml

This commit is contained in:
2025-03-12 23:32:25 +00:00
parent 9520f8b5c9
commit ed0345fd3e

View File

@@ -31,5 +31,14 @@ jobs:
# Push changes to remote main branch
git push origin main
build-and-run:
uses: ./.github/workflows/deploy-docker.yml@main
trigger-pipeline-b:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
- name: Create and push tag
run: |
git config --global user.name "Gitea Actions"
git config --global user.email "actions@gitea.local"
git tag docker-build-$(date +%s)
git push --tags