Go to file
Sambo Chea ca2ba46b00
Update README.md
2021-03-26 21:51:43 +07:00
.github/workflows Fixed the docker and shell and remove bash 2021-03-26 21:49:36 +07:00
.gitignore Just add example action but not complete yet 2021-03-26 11:54:15 +07:00
action.yml Updated the branding 2021-03-26 20:39:38 +07:00
Dockerfile Fixed chmod for entrypoint 2021-03-26 20:59:45 +07:00
entrypoint.sh Fixed the docker and shell and remove bash 2021-03-26 21:49:36 +07:00
LICENSE Just add example action but not complete yet 2021-03-26 11:54:15 +07:00
README.md Update README.md 2021-03-26 21:51:43 +07:00

Starter Docker - GitHub Actions

  • Run actions with docker (latest version)
  • Quick and easy to use
  • Support custom registry
  • Support custom shell and commands

Usage

- name: Starter Docker
  uses: CUBETIQ/starter-docker-actions@v1

Example Action

name: CI

on:
  push:
    branches: [ master ]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Starter Docker Test
        uses: cubetiq/starter-docker-actions@v1
        with:
          shell: sh
          run: docker version

Contributors