From b45b1f0a53d378bda6e697c033d6648721e3e88b Mon Sep 17 00:00:00 2001 From: JoshuaDodds Date: Sat, 26 Nov 2022 21:16:02 +0100 Subject: [PATCH] testing auto release tag generation --- .github/workflows/main.yml | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d6966de..14c180a 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -57,3 +57,16 @@ jobs: ghcr.io/${{ steps.calver.outputs.repo }}:latest cache-from: type=registry,ref=ghcr.io/${{ steps.calver.outputs.repo }}:buildcache cache-to: type=registry,ref=ghcr.io/${{ steps.calver.outputs.repo }}:buildcache,mode=max + + - name: Generate release tag + uses: amitsingh-007/next-release-tag@v1.0.0 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + + - name: Create Release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: ${{ env.release_tag }} + release_name: Release ${{ env.release_tag }}