Skip to content

Commit

Permalink
.github/workflows: Removed erroneous sed substitution in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
aftix committed Dec 23, 2024
1 parent 08050d3 commit 2b39b98
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
nix eval '.#extra.substituters' --apply 'builtins.toString' | tr -d '"' | awk '{print "substituters="$0}' | tee -a "$GITHUB_OUTPUT"
nix eval '.#extra.trusted-public-keys' --apply 'builtins.toString' | tr -d '"' | awk '{print "trustedPublicKeys="$0}' | tee -a "$GITHUB_OUTPUT"
nix eval '.#extra.extra-experimental-features' --apply 'builtins.toString' | tr -d '"' | sed 's/pipe-operator/pipe-operators/' | awk '{print "experimentalFeatures="$0}' | tee -a "$GITHUB_OUTPUT"
nix eval '.#extra.extra-experimental-features' --apply 'builtins.toString' | tr -d '"' | awk '{print "experimentalFeatures="$0}' | tee -a "$GITHUB_OUTPUT"
deploy-fermi:
name: Deploy fermi NixOS server
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
run: |
nix eval '.#extra.substituters' --apply 'builtins.toString' | tr -d '"' | awk '{print "substituters="$0}' | tee -a "$GITHUB_OUTPUT"
nix eval '.#extra.trusted-public-keys' --apply 'builtins.toString' | tr -d '"' | awk '{print "trustedPublicKeys="$0}' | tee -a "$GITHUB_OUTPUT"
nix eval '.#extra.extra-experimental-features' --apply 'builtins.toString' | tr -d '"' | sed 's/pipe-operator/pipe-operators/' | awk '{print "experimentalFeatures="$0}' | tee -a "$GITHUB_OUTPUT"
nix eval '.#extra.extra-experimental-features' --apply 'builtins.toString' | tr -d '"' | awk '{print "experimentalFeatures="$0}' | tee -a "$GITHUB_OUTPUT"
attic:
name: Build attic-client
Expand Down

0 comments on commit 2b39b98

Please sign in to comment.