-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update nix-package workflow to work with flake.nix
- Loading branch information
Showing
1 changed file
with
5 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: | ||
|
@@ -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 |