mirror of
https://github.com/zellij-org/zellij.git
synced 2024-12-23 09:11:40 +03:00
fix(ci): quoting issues (#1589)
This commit is contained in:
parent
a99a5886c1
commit
d1fa067713
2
.github/workflows/nix.yml
vendored
2
.github/workflows/nix.yml
vendored
@ -47,4 +47,4 @@ jobs:
|
||||
nix build .#zellij-msrv || nix build .#zellij-msrv --substituters 'https://cache.nixos.org' --extra-substituters ''
|
||||
- if: ${{ failure() }}
|
||||
run: |
|
||||
echo "::error :: If this is the only ci step failing, it is likely that the MSRV needs to be bumped.
|
||||
echo "::error :: If this is the only ci step failing, it is likely that the MSRV needs to be bumped."
|
||||
|
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
@ -40,9 +40,9 @@ jobs:
|
||||
- name: Set release tag
|
||||
run: |
|
||||
if [ "$GITHUB_EVENT_NAME" == 'workflow_dispatch' ]; then
|
||||
echo "RELEASE_TAG=main" >> $GITHUB_ENV
|
||||
echo "RELEASE_TAG=main" >> "$GITHUB_ENV"
|
||||
else
|
||||
echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
||||
echo "RELEASE_TAG=${GITHUB_REF#refs/tags/}" >> "$GITHUB_ENV"
|
||||
fi
|
||||
|
||||
- name: Checkout repository
|
||||
|
Loading…
Reference in New Issue
Block a user