From afd7e0536e93a8e6f0ed7b9cabad014a1de0141e Mon Sep 17 00:00:00 2001 From: Andrew Skurlatov Date: Sun, 19 Feb 2023 21:31:30 +0100 Subject: [PATCH] fix: tag creation in ci/cd --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f59f961..94ba9cf 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -42,6 +42,11 @@ jobs: username: ${{ secrets.DOCKERHUB_USER }} password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Bump version and push tag + id: tag_version + uses: mathieudutour/github-tag-action@v6.0 + with: + github_token: ${{ secrets.RELEASES_ACTION_GITHUB_TOKEN }} - name: Build and push Docker image uses: docker/build-push-action@v2