Skip to content

Commit

Permalink
Fix problem on git describe
Browse files Browse the repository at this point in the history
  • Loading branch information
Miguel Aranha Baldi Horlle committed May 1, 2024
1 parent ba067be commit a3b2f02
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/build_and_publish.yml
Expand Up @@ -11,6 +11,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Fix tag reference (workaround for https://github.com/actions/checkout/issues/290)
run: git fetch --update-head-ok -f origin ${{ github.ref }}:${{ github.ref }}
- name: Build
run: docker-compose up
- name: Upload Artifact
Expand All @@ -24,6 +26,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Fix tag reference (workaround for https://github.com/actions/checkout/issues/290)
run: git fetch --update-head-ok -f origin ${{ github.ref }}:${{ github.ref }}
- name: Build (Windows)
run: docker-compose -f docker-compose.windows.yml up
- name: Make Windows Installer
Expand Down

0 comments on commit a3b2f02

Please sign in to comment.