Compare commits

...
Author SHA1 Message Date
github-actions[bot] 36767b188d chore(release): v2.1.1 2026-05-26 09:55:00 +00:00
tomasrandGitHub f7c84136a5 Merge (#37) from tomasriveral/fix-release-workflow
fix: release workflow correct branch
2026-05-26 11:53:33 +02:00
tomasr f66371137a fix: release workflow correct branch 2026-05-26 11:51:08 +02:00
3 changed files with 10 additions and 10 deletions
+3 -3
View File
@@ -26,7 +26,7 @@ jobs:
- name: Create release branch - name: Create release branch
run: | run: |
git checkout -B release/v${{ inputs.version }} git checkout -B release/${{ inputs.version }}
- name: Set version in flake.nix - name: Set version in flake.nix
run: | run: |
@@ -42,14 +42,14 @@ jobs:
- name: Push branch - name: Push branch
run: | run: |
git push origin release/v${{ inputs.version }} git push origin release/${{ inputs.version }}
- name: Create Pull Request - name: Create Pull Request
run: | run: |
gh pr create \ gh pr create \
--base main \ --base main \
--head release/v${{ inputs.version }} \ --head release/v${{ inputs.version }} \
--title "[Automatic] Release PR v${{ inputs.version }}" \ --title "[Automatic] Release PR ${{ inputs.version }}" \
--body "Automated release PR.\nAfter the test's succesfull run, create manually a release with a new tag matching ${{ inputs.version }}" --body "Automated release PR.\nAfter the test's succesfull run, create manually a release with a new tag matching ${{ inputs.version }}"
env: env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Generated
+6 -6
View File
@@ -20,11 +20,11 @@
}, },
"nixpkgs": { "nixpkgs": {
"locked": { "locked": {
"lastModified": 1779508470, "lastModified": 1779560665,
"narHash": "sha256-Ap9KJX+5xHIn3bPIpfNgT6MEXdAECECwo4/rmlQD74M=", "narHash": "sha256-tpyBcxPpcQb8ukyNF7DoCwfSY3VPsxHoYwj00Cayv5o=",
"owner": "NixOS", "owner": "NixOS",
"repo": "nixpkgs", "repo": "nixpkgs",
"rev": "29916453413845e54a65b8a1cf996842300cd299", "rev": "64c08a7ca051951c8eae34e3e3cb1e202fe36786",
"type": "github" "type": "github"
}, },
"original": { "original": {
@@ -37,11 +37,11 @@
"notewrapper": { "notewrapper": {
"flake": false, "flake": false,
"locked": { "locked": {
"lastModified": 1779721342, "lastModified": 1779789213,
"narHash": "sha256-QbRzgD4HoUUemaVCIZ2VfiW+SUjzFY2rL51CLOxQLvk=", "narHash": "sha256-N+5RH2qF5VdBmfIdxRhg7DceH7ALAie+kFOR7xL1pDs=",
"owner": "tomasriveral", "owner": "tomasriveral",
"repo": "NoteWrapper", "repo": "NoteWrapper",
"rev": "e370f98c5ebc3c037dec4e7e35f26230724b70d3", "rev": "f7c84136a5ff4a0712b31cbb41ce3e1dd7fde8d3",
"type": "github" "type": "github"
}, },
"original": { "original": {
+1 -1
View File
@@ -17,7 +17,7 @@
in { in {
packages.default = pkgs.stdenv.mkDerivation (finalAttrs: { packages.default = pkgs.stdenv.mkDerivation (finalAttrs: {
pname = "notewrapper"; pname = "notewrapper";
version = "v2.1"; version = "v2.1.1";
src = notewrapper; src = notewrapper;