Go to file
Sambo Chea 61958699cd Task: Add docker from cubetiq docker image and replaced docker container 2021-07-14 18:06:46 +07:00
.github/workflows Updated 2021-07-14 17:44:21 +07:00
.gitignore Add main branch and updated github actions 2021-07-14 15:24:51 +07:00
action.yml Updated the branding 2021-03-26 20:39:38 +07:00
Dockerfile Task: Add docker from cubetiq docker image and replaced docker container 2021-07-14 18:06:46 +07:00
entrypoint.sh Task: Add docker from cubetiq docker image and replaced docker container 2021-07-14 18:06:46 +07:00
LICENSE Just add example action but not complete yet 2021-03-26 11:54:15 +07:00
README.md Add main branch and updated github actions 2021-07-14 15:24:51 +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@main

Example Action

name: CI

on:
  push:
    branches: [ main ]

jobs:
  build:
    runs-on: ubuntu-latest

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

Contributors