From c854dd18bd1e0c0f5f264ed61333603eb793653d Mon Sep 17 00:00:00 2001 From: potzplitz <127513690+potzplitz@users.noreply.github.com> Date: Sun, 3 Mar 2024 13:43:32 +0100 Subject: [PATCH] Update maven.yml --- .github/workflows/maven.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 95dbb71..dd6f60d 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -27,13 +27,14 @@ jobs: needs: build runs-on: ubuntu-latest permissions: - contents: write # This line gives the token permission to create releases + contents: write steps: - uses: actions/checkout@v3 - name: Generate tag id: tag run: echo "::set-output name=tag::$(date +'%Y%m%d%H%M%S')" - name: Create Release + id: create_release uses: actions/create-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}