Skip to content

Latest commit

 

History

History
22 lines (18 loc) · 680 Bytes

README.md

File metadata and controls

22 lines (18 loc) · 680 Bytes

Github action with JDK 11.0.5, SBT 1.3.8, Docker and Ivy resolver.

Examples:

name: Run tests
        uses: matankdr/[email protected]
        with:
          command: sbt test docker:publish publish
          packages-resolver: "ivy creds" 

name: Run test and upload container
        uses: matankdr/[email protected]
        with:
          command: sbt test docker:publish publish
          working-directory: subproject/
          packages-resolver: "ivy creds"  
          docker-login-username: "my username"
          docker-login-password: "my password"
          docker-registry: "my registry"