Skip to content

Commit

Permalink
actions: fix release
Browse files Browse the repository at this point in the history
  • Loading branch information
jkozol committed Feb 15, 2023
1 parent 75bbcb2 commit 3407fdf
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ jobs:
fetch-depth: 0

- name: Workaround for https://github.com/actions/checkout/pull/697
run: git fetch --force origin $(git describe --tags):refs/tags/$(git describe --tags)
run: |
git config --global --add safe.directory /__w/cockpit-composer/cockpit-composer
git fetch --force origin $(git describe --tags):refs/tags/$(git describe --tags)
# HACK: the clean plugin doesn't like to build in the mounted $HOME volume
- name: Build release
Expand Down

0 comments on commit 3407fdf

Please sign in to comment.