Add and fixed the docker run in action

This commit is contained in:
Sambo Chea 2021-03-26 20:54:06 +07:00
parent 21c3ada301
commit ae83b97fa5

View File

@ -5,9 +5,30 @@
- Support custom shell and commands
# Usage
```yml
```yaml
- name: Starter Docker
uses: CUBETIQ/starter-docker-actions@v0.1
uses: CUBETIQ/starter-docker-actions@1
```
# Example Action
```yaml
name: CI
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: cubetiq/starter-docker-actions@v0.1
- name: Starter Docker Test
run: |
docker images
docker ps
docker --version
```
# Contributors