Skip to content

Commit

Permalink
running exeutable files
Browse files Browse the repository at this point in the history
  • Loading branch information
alialaa committed Dec 19, 2021
1 parent d66135a commit eeff22e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/container.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,12 @@ jobs:
with:
entrypoint: /usr/local/bin/node
args: -v
- uses: actions/checkout@v1
- name: Run a script
uses: docker://node:12.14.1-alpine3.10
with:
entrypoint: ./script.sh
args: "Some string"
node-docker:
runs-on: ubuntu-latest
services:
Expand Down
3 changes: 3 additions & 0 deletions script.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/sh
echo $1 $2
echo "Hello World"

0 comments on commit eeff22e

Please sign in to comment.