Skip to content

Commit

Permalink
fix(ci-cd): Fix ci:cd
Browse files Browse the repository at this point in the history
  • Loading branch information
Myzel394 committed Oct 16, 2024
1 parent 5795da3 commit 684e21b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-nightly.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
types: [ published ]

jobs:
build-nightly:
build-release:
runs-on: ubuntu-latest

steps:
Expand All @@ -15,7 +15,7 @@ jobs:
- name: Check git version matches flake version
shell: bash
run: |
if ! [ $(${{ github.ref }} | cut -d'v' -f 2) = $(grep '# CI:CD-VERSION$' flake.nix | cut -d'"' -f 2) ];
if ! [ $(echo '${{ github.ref }}' | cut -d'v' -f 2) = $(grep '# CI:CD-VERSION$' flake.nix | cut -d'"' -f 2) ];
then
echo "Version mismatch between Git and flake"
exit 1
Expand Down

0 comments on commit 684e21b

Please sign in to comment.