Skip to content

Commit

Permalink
Merge pull request #53 from moggers87/30-build-source-no-changelog
Browse files Browse the repository at this point in the history
Fetch entire history when building source
  • Loading branch information
moggers87 committed Dec 14, 2023
2 parents 209ca5b + fc2df98 commit 6e21ba7
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
matrix:
os: [ubuntu-latest, macos-latest]
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Linux dependencies
if: startsWith(matrix.os, 'ubuntu-')
run: |
Expand Down Expand Up @@ -45,7 +45,9 @@ jobs:
strategy:
fail-fast: false
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Linux dependencies
run: |
sudo apt-get update
Expand All @@ -56,8 +58,9 @@ jobs:
./configure
make dist
- name: Upload source distribution
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: source
path: apricots-*.tar.gz
if-no-files-found: error
compression-level: 0

0 comments on commit 6e21ba7

Please sign in to comment.