Code Monkey home page Code Monkey logo

docker-build-push's Introduction

Docker Login Build Tag Push

GitHub action to build, tag and push images to Registry. You can use this image with currently docker.io or any of Google Cloud Registries like gcr.io.

Configuration takes two inputs and environmental variable configurations of your repository.

Below are some examples. This action will be published when fully polished.

Examples

Here are examples of workflows that use this action on only push to master.

Push to Google Cloud Registry eg gcr.io

name: Build and Push
on: 
  push:
      branches:    
          - master
jobs:
  build_publish_gcr:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1

    - name: Build and Push
      uses: zemuldo/docker-build-push@master
      env:
        GCLOUD_PROJECT_ID: ${{ secrets.GCLOUD_PROJECT_ID }}
        GCLOUD_AUTH: ${{ secrets.GCLOUD_AUTH }}
        REGISTRY_URL: "gcr.io"
      with:
       image_name: "my-image"
       image_tag: "latest"

Pus to docker hub

name: Publish GRC
on: 
  push:
      branches:    
          - master
          - develop
jobs:

  build_publish_docker_hub:
    runs-on: ubuntu-latest
    steps:
    - uses: actions/checkout@v1

    - name: Build and Push
      uses: zemuldo/docker-build-push@master
      env:
        DOCKER_USERNAME: "docker_user_name"
        DOCKER_NAMESPACE: "docker_name_space"
        DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
        REGISTRY_URL: "docker.io"
      with:
       image_name: "my-image"
       image_tag: "latest"

TODO

  • Add login to docker.pkg.github.com

docker-build-push's People

Contributors

zemuldo avatar maxine4j avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.