Skip to content

Latest commit

 

History

History
60 lines (49 loc) · 1.31 KB

README.md

File metadata and controls

60 lines (49 loc) · 1.31 KB

Docker Build Push to GitHub Package Registry

Builds and pushes Docker images to GitHub Package Registry

Usage examples:

Build and publish Docker Image with ref and sha tag

    steps:
    - uses: actions/checkout@v2
      name: Check out code

    - name: Build and Publish Docker image
      uses: zvfvrv/[email protected]
      with:
        gh_token: ${{ secrets.TOKEN_GH }}
        image_name: test
        tag_with_ref: true
        tag_with_sha: true
        path: ./test
        dockerfile: Dockerfile

Build and publish Docker Image with a latest tag

    steps:
    - uses: actions/checkout@v2
      name: Check out code

    - name: Build and Publish Docker image
      uses: zvfvrv/[email protected]
      with:
        gh_token: ${{ secrets.TOKEN_GH }}
        image_name: test
        tags: latest
        path: ./test
        dockerfile: Dockerfile

Build without publish Docker Image

    steps:
    - uses: actions/checkout@v2
      name: Check out code

    - name: Build and Publish Docker image
      uses: zvfvrv/[email protected]
      with:
        gh_token: ${{ secrets.TOKEN_GH }}
        image_name: test
        tag_with_ref: true
        tag_with_sha: true
        path: ./test
        dockerfile: Dockerfile
        target: withcurl
        push: false