From d47b8dde4657523438b16d68c34604ac9d6aabdd Mon Sep 17 00:00:00 2001 From: Sergei Kuvakin Date: Tue, 2 Nov 2021 23:31:17 +0200 Subject: [PATCH] fix: push all tags --- .github/workflows/actions.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/actions.yml b/.github/workflows/actions.yml index 98beeb8..5bf7391 100644 --- a/.github/workflows/actions.yml +++ b/.github/workflows/actions.yml @@ -36,7 +36,7 @@ jobs: if: github.ref == 'refs/heads/master' run: | docker login -u ${{ secrets.DOCKER_USERNAME }} -p ${{ secrets.DOCKER_TOKEN }} - docker push ${{ env.DOCKER_REPO }} + docker push --all-tags ${{ env.DOCKER_REPO }} - name: Create Release if: github.ref == 'refs/heads/master' uses: ncipollo/release-action@v1