Skip to content

Commit

Permalink
fix: add the run section
Browse files Browse the repository at this point in the history
Signed-off-by: Prateek Chandra <[email protected]>
  • Loading branch information
pchandra19 committed Feb 14, 2025
1 parent 27b831c commit bff608c
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,14 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
submodules: 'recursive'
fetch-depth: 0
- run: |
# BUG: HEAD tag is fetched as lightweight instead of annotated
# https://github.com/actions/checkout/issues/290
if [ "${{ github.ref_type }}" == "tag" ]; then
git fetch -f origin ${{ github.ref }}:${{ github.ref }}
fi
- uses: DeterminateSystems/nix-installer-action@v14
- uses: DeterminateSystems/magic-nix-cache-action@v8
- name: Login to Docker Hub
Expand Down

0 comments on commit bff608c

Please sign in to comment.