Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
Naxdy committed Oct 20, 2024
1 parent 0330397 commit 68af922
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- "master"

concurrency:
group: "${{ github.head_ref }}"
group: "master"
cancel-in-progress: true

jobs:
Expand All @@ -29,7 +29,7 @@ jobs:
- name: "Determine release"
id: det-rel
run: |
version=$(nix flake eval .#packages.x86_64-linux.default.version --raw)
version=$(nix eval .#packages.x86_64-linux.default.version --raw)
if [$(git tag -l "$version")]; then
echo "releasever=$version" >> $GITHUB_OUTPUT
Expand All @@ -50,5 +50,5 @@ jobs:
artifacts: "result/lib/*.nro,result-classic/lib/*.nro"
bodyFile: ".github/release_notes/v${{ steps.det-rel.outputs.releasever }}.md"
name: "v${{ steps.det-rel.outputs.releasever }}"
commit: "${{ github.head_ref }}"
commit: "${{ github.sha }}"
tag: "v${{ steps.det-rel.outputs.releasever }}"

0 comments on commit 68af922

Please sign in to comment.