Skip to content

Commit

Permalink
Actions must specify shell
Browse files Browse the repository at this point in the history
  • Loading branch information
Mirko-von-Leipzig committed Aug 29, 2024
1 parent 52aa0bc commit 36901a1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/actions/debian-packages/action.yml
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@

name: 'Build Debian packages'
description: 'Builds miden-node and miden-faucet Debian packages'
inputs:
suffix:
required: true
outputs:
node-package:
description: "Path to the miden-node package"
description: "Path to the miden-node debian package."
value: ${{ steps.some-step.outputs.node-package }}
faucet-package:
description: "Path to the miden-faucet package"
description: "Path to the miden-faucet debian package."
value: ${{ steps.some-step.outputs.faucet-package }}
runs:
using: "composite"
steps:
- name: Do the thing
run: echo "copy over existing packaging stuff"
shell: bash
4 changes: 4 additions & 0 deletions .github/actions/deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,10 @@ inputs:
required: true
node-package:
required: true
description: "Path to the miden-node debian package."
faucet-package:
required: true
description: "Path to the miden-faucet debian package."
runs:
using: "composite"
steps:
Expand All @@ -22,6 +24,8 @@ runs:
aws-region: ${{ inputs.aws-region }}
role-to-assume: ${{ inputs.role-to-assume }}
role-session-name: GithubActionsSession
shell: bash

- name: Rest of the owl
run: echo "The rest of the stuff should be copy pasted in, but use the **-package filepaths to scm the packages across."
shell: bash
2 changes: 2 additions & 0 deletions .github/actions/ssm-send-command/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ runs:
using: "composite"
steps:
- name: Execute command
shell: bash
run: |
COMMAND_ID=$(aws ssm send-command \
--instance-ids ${{ inputs.instance_id }} \
Expand All @@ -23,6 +24,7 @@ runs:
echo "command-id=$COMMAND_ID" >> $GITHUB_OUTPUT
- name: Monitor command logs and status
shell: bash
run: |
echo "Waiting for command to complete"
while true; do
Expand Down

0 comments on commit 36901a1

Please sign in to comment.