We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6e81a8f commit 333908fCopy full SHA for 333908f
.github/workflows/deploy-env.yaml
@@ -34,7 +34,7 @@ on:
34
35
jobs:
36
deploy:
37
- environment: ${{ inputs.environment || 'ops-preview-1@us-east-1' }}
+ environment: ${{ inputs.environment }}
38
runs-on: ubuntu-latest
39
steps:
40
- name: 📥 Checkout repository
@@ -46,8 +46,7 @@ jobs:
46
- name: 🚀 Deploy
47
run: |
48
echo "${{ secrets.ENVRC }}" > .envrc.local
49
- source .envrc.local
50
- nix develop -L --command bash -c "
+ nix develop -L --command bash -c '
51
set -euo pipefail
52
- echo "yes" | nix run .#cardano-services.${{ inputs.environment || 'ops-preview-1@us-east-1' }}.apply
53
- "
+ echo "yes" | nix run .#cardano-services.${{ inputs.environment }}.apply
+ '
0 commit comments