starter-docker-github-actions/README.md

39 lines
585 B
Markdown
Raw Permalink Normal View History

# Starter Docker - GitHub Actions
2021-03-26 20:58:05 +07:00
2021-03-26 20:45:04 +07:00
- Run actions with docker (latest version)
- Quick and easy to use
2021-03-26 20:45:04 +07:00
- Support custom registry
- Support custom shell and commands
# Usage
2021-03-26 20:58:05 +07:00
2021-03-26 20:54:06 +07:00
```yaml
2021-03-26 20:45:04 +07:00
- name: Starter Docker
uses: CUBETIQ/starter-docker-actions@v1
2021-03-26 20:54:06 +07:00
```
# Example Action
2021-03-26 20:58:05 +07:00
2021-03-26 20:54:06 +07:00
```yaml
name: CI
on:
push:
2021-03-26 21:33:19 +07:00
branches: [ master ]
2021-03-26 20:54:06 +07:00
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Starter Docker Test
uses: cubetiq/starter-docker-actions@v1
2021-03-26 21:33:19 +07:00
with:
2021-03-26 21:51:43 +07:00
shell: sh
2021-03-26 21:33:19 +07:00
run: docker version
2021-03-26 20:45:04 +07:00
```
# Contributors
2021-03-26 20:58:05 +07:00
- Sambo Chea <sombochea@cubetiqs.com>