From 1a8f82ded81cff1a1ac6d3a43901f8e9e05a7b25 Mon Sep 17 00:00:00 2001 From: hoogi91 Date: Mon, 12 Aug 2024 20:51:01 +0000 Subject: [PATCH 1/2] https://github.com/hoogi91/spreadsheets/releases/tag/3.4.0 --- Documentation/Settings.cfg | 2 +- ext_emconf.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/Settings.cfg b/Documentation/Settings.cfg index 2514ae01..e8707946 100644 --- a/Documentation/Settings.cfg +++ b/Documentation/Settings.cfg @@ -27,7 +27,7 @@ project = Spreadsheets # ... (recommended) version, displayed next to title (desktop) and in 'be', 'author' => 'Thorsten Hogenkamp', 'author_email' => 'thorsten@hogenkamp-bocholt.de', - 'version' => '4.0.1', + 'version' => '3.4.0', 'state' => 'stable', 'constraints' => [ 'depends' => [ From 1d0919ee6a1245f90a917b106516fa88574b12a0 Mon Sep 17 00:00:00 2001 From: hoogi91 Date: Mon, 12 Aug 2024 23:09:22 +0200 Subject: [PATCH 2/2] Improve draft release creation --- .github/workflows/release.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 769edbcc..7b97793c 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -45,7 +45,7 @@ jobs: - uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: https://github.com/hoogi91/spreadsheets/releases/tag/${{ steps.bump-version.outputs.version }} - - run: gh release create ${{ steps.bump-version.outputs.version }} --generate-notes --draft=true --latest=${{ inputs.latest-release }} + - run: gh release create ${{ steps.bump-version.outputs.version }} --generate-notes --draft --target=${{ github.sha }} --latest=${{ inputs.latest-release }} env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} @@ -54,7 +54,7 @@ jobs: environment: 'github' needs: [ bump-version ] steps: - - run: gh release edit ${{ steps.bump-version.outputs.version }} --draft=false + - run: gh release edit ${{ steps.bump-version.outputs.version }} --draft=false --latest=${{ inputs.latest-release }} env: GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} - uses: actions/checkout@v4