From 68efc27c3efbdca0835cbecbf8db6f8abe24a2fe Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 24 Feb 2025 17:46:49 +0000 Subject: [PATCH 1/2] gh-action: bump ncipollo/release-action from 1.15.0 to 1.16.0 Bumps [ncipollo/release-action](https://github.com/ncipollo/release-action) from 1.15.0 to 1.16.0. - [Release notes](https://github.com/ncipollo/release-action/releases) - [Commits](https://github.com/ncipollo/release-action/compare/v1.15.0...v1.16.0) --- updated-dependencies: - dependency-name: ncipollo/release-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dc1d46a..2b54882 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -90,7 +90,7 @@ jobs: filename: ../release-staging-${{ env.timestamp }}.zip directory: public - name: Create Release - uses: ncipollo/release-action@v1.15.0 + uses: ncipollo/release-action@v1.16.0 with: tag: staging-${{ env.timestamp }} name: Website staging version ${{ env.timestamp }} @@ -118,7 +118,7 @@ jobs: filename: ../release-production-${{ env.timestamp }}.zip directory: public - name: Create Release - uses: ncipollo/release-action@v1.15.0 + uses: ncipollo/release-action@v1.16.0 with: makeLatest: true tag: production-${{ env.timestamp }} From 61a3db619627a648a73c9ea73b5607e28f8588c3 Mon Sep 17 00:00:00 2001 From: Marek Krug Date: Wed, 26 Feb 2025 10:48:17 +0100 Subject: [PATCH 2/2] fix github action to make calendar work (allowed execution on schedule and not just on commits or pull requests) --- .github/workflows/release.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index dc1d46a..f9530ac 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -74,7 +74,7 @@ jobs: needs: [ calendar ] runs-on: ubuntu-latest environment: staging - if: github.ref == 'refs/heads/staging' && github.event_name == 'push' + if: (github.ref == 'refs/heads/staging' && github.event_name == 'push') || github.event_name == 'schedule' steps: - name: Download pages uses: actions/download-artifact@v4 @@ -102,7 +102,7 @@ jobs: needs: [ calendar ] runs-on: ubuntu-latest environment: production - if: github.ref == 'refs/heads/production' && github.event_name == 'push' + if: (github.ref == 'refs/heads/production' && github.event_name == 'push') || github.event_name == 'schedule' steps: - name: Download pages uses: actions/download-artifact@v4 @@ -126,3 +126,4 @@ jobs: body: Website production version ${{ env.timestamp }} artifacts: release-production-${{ env.timestamp }}.zip token: ${{ secrets.GITHUB_TOKEN }} + \ No newline at end of file