diff --git a/.github/workflows/increase-version.yml b/.github/workflows/increase-version.yml index 62de3e4..652f10b 100644 --- a/.github/workflows/increase-version.yml +++ b/.github/workflows/increase-version.yml @@ -30,6 +30,15 @@ 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 \ No newline at end of file