Skip to content

Commit

Permalink
Merge pull request #154 from jannis-baum/issue/153-fix-release-ci
Browse files Browse the repository at this point in the history
Fix Release CI
  • Loading branch information
jannis-baum authored Aug 1, 2024
2 parents 55facfb + 87815bd commit e5e853c
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,12 @@ jobs:
needs: [build-linux, build-macos]
runs-on: ubuntu-latest
steps:
# we check out the repo to get information from tags
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
# release binaries -------------------------------------------------------
- name: download linux artifact
uses: actions/download-artifact@v4
Expand All @@ -92,14 +98,7 @@ jobs:
chmod +x ./vivify-linux/* ./vivify-macos/*
tar -czf vivify-linux.tar.gz vivify-linux
tar -czf vivify-macos.tar.gz vivify-macos
# release notes ----------------------------------------------------------
# we check out the repo to get information from tags
- name: checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
fetch-tags: true
# actions/checkout seems to have a bug where annotated tags are converted
# to simple tags so we have to fetch them explicitly again
# https://github.com/actions/checkout/issues/882
Expand Down

0 comments on commit e5e853c

Please sign in to comment.