Skip to content

Commit

Permalink
Update nix-package workflow to work with flake.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
pope committed Aug 7, 2024
1 parent 6d94013 commit 9e6cbaf
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/nix-package.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Update Version and Hash in default.nix
name: Update Version and Hash in flake.nix

on:
push:
Expand Down Expand Up @@ -42,15 +42,15 @@ jobs:
echo "valid=false" >> $GITHUB_OUTPUT
fi
- name: Update version in default.nix
- name: Update version in flake.nix
if: steps.valid-tag.outputs.valid
run: |
latest_annotated_tag="${{ steps.newest-tag.outputs.latest_annotated_tag }}"
latest_annotated_tag_without_v="${latest_annotated_tag#v}" # Remove 'v' prefix
sed -i "s/version = \".*\";/version = \"$latest_annotated_tag_without_v\";/" default.nix
sed -i "s/version = \".*\";/version = \"$latest_annotated_tag_without_v\";/" flake.nix
new_hash=$(nix-prefetch-url --unpack --type sha256 "https://github.com/laamaa/m8c/archive/v$latest_annotated_tag_without_v.tar.gz") # Use updated variable name
sed -i "s/hash = \".*\";/hash = \"sha256:$new_hash\";/" default.nix
sed -i "s/hash = \".*\";/hash = \"sha256:$new_hash\";/" flake.nix
git config user.email "[email protected]"
git config user.name "GitHub Actions"
git commit -am "Update version and hash in default.nix to $latest_annotated_tag_without_v"
git commit -am "Update version and hash in flake.nix to $latest_annotated_tag_without_v"
git push origin HEAD:main

0 comments on commit 9e6cbaf

Please sign in to comment.