Skip to content

Commit

Permalink
Another attempt to speedup releases
Browse files Browse the repository at this point in the history
  • Loading branch information
Molkree authored Sep 17, 2023
1 parent db9f711 commit c32da04
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name: Release

# Controls when the action will run.
on:
# Package alpha version at midnight UTC every Friday
# Package alpha version at 06:00 UTC every Thursday
schedule:
- cron: '0 6 * * THU'
# Triggers the workflow on tag events
Expand All @@ -21,9 +21,10 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
# checkout@v2 doesn't pull tags by default now, which results in super long auto changelog, so pull all history incl. tags
# alternative would be to use checkout@v1
fetch-depth: 0
fetch-depth: 250

- name: Fetch recent history with tags
run: git fetch --depth=250 --tags

# once cloned, we just run the GitHub Action for the packager project
- name: Package and release
Expand Down

0 comments on commit c32da04

Please sign in to comment.