Updated to version 0.4

This commit is contained in:
Sambo Chea 2021-03-26 21:13:21 +07:00
parent 9758e24702
commit b34a9fb6c7
3 changed files with 9 additions and 8 deletions

View File

@ -2,16 +2,15 @@ name: CI
on:
push:
branches: [ master ]
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: cubetiq/starter-docker-actions@v0.3
- uses: cubetiq/starter-docker-actions@v0.4
- name: Starter Docker Test
run: |
docker images
docker ps
docker --version
with:
shell: bash
run: docker version

View File

@ -9,7 +9,7 @@
```yaml
- name: Starter Docker
uses: CUBETIQ/starter-docker-actions@v0.3
uses: CUBETIQ/starter-docker-actions@v0.4
```
# Example Action
@ -26,7 +26,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: cubetiq/starter-docker-actions@v0.3
- uses: cubetiq/starter-docker-actions@v0.4
- name: Starter Docker Test
run: |
docker images

View File

@ -6,6 +6,8 @@ fi
echo "$INPUT_RUN" | sed -e 's/\\n/;/g' > semicolon_delimited_script
echo "INPUT RUN => $semicolon_delimited_script"
if [ ! -z $INPUT_DOCKER_NETWORK ];
then INPUT_OPTIONS="$INPUT_OPTIONS --network $INPUT_DOCKER_NETWORK"
fi