summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authora-kenji <aks.kenji@protonmail.com>2022-07-15 12:35:36 +0200
committerGitHub <noreply@github.com>2022-07-15 12:35:36 +0200
commitd1fa0677132026e8f50410980d7c4cb249ab4b45 (patch)
tree92034405c3bef3e0ecc56a5486ae2a30680e613b /.github
parenta99a5886c1d8afaf00a459d9831d50fc808498d0 (diff)
fix(ci): quoting issues (#1589)
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/nix.yml2
-rw-r--r--.github/workflows/release.yml4
2 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/nix.yml b/.github/workflows/nix.yml
index 882e6c708..c79e4761e 100644
--- a/.github/workflows/nix.yml
+++ b/.github/workflows/nix.yml
@@ -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."
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 5f9881980..4c31f32b2 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -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