diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 5ab4c0d..542efb0 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,7 +5,7 @@ on: tags: - '*' schedule: - - cron: '20 11 * * *' + - cron: '0 1 * * *' jobs: build: @@ -38,7 +38,7 @@ jobs: continue-on-error: false run: | # 3AM CET - since="$(date -d 'yesterday' +%Y-%m-%d) 11:20:00" + since="$(date -d 'yesterday' +%Y-%m-%d) 01:00:00" count=$(git rev-list --count --since="$since" --until=now HEAD) if [ "$count" -gt 0 ]; then echo "new_commits=true" >> $GITHUB_OUTPUT @@ -138,7 +138,6 @@ jobs: const ownerName = 'debridmediamanager'; const tagName = '${{ steps.version.outputs.version }}'; const repoName = `zurg${tagName.includes('-rc') || tagName.includes('-nightly') ? '' : '-testing'}`; - const releaseName = `${tagName}`; const prerelease = tagName.includes('-nightly'); let lastReleaseTime; @@ -178,7 +177,6 @@ jobs: owner: ownerName, repo: repoName, tag_name: tagName, - name: releaseName, body: releaseBody, prerelease: prerelease, }); diff --git a/.github/workflows/build_docker.yml b/.github/workflows/build_docker.yml index 1284b25..feced69 100644 --- a/.github/workflows/build_docker.yml +++ b/.github/workflows/build_docker.yml @@ -5,7 +5,7 @@ on: tags: - '*' schedule: - - cron: '20 11 * * *' + - cron: '0 1 * * *' jobs: build-and-push-image: