Skip to content
Compare
Choose a tag to compare
@mateuszkwiecinski mateuszkwiecinski released this 13 Feb 21:18
· 68 commits to master since this release
af52fdb

Added

  • It is now possible to pass latest as the lib-version argument, the action will find and use latest published release (the one with the latest tag on owner/repo/releases page)
  • Action now allows to run any Diffuse's fork using diffuse-repo input.
    Sample:
  - id: diffuse
    uses: usefulness/[email protected]
    with:
      old-file-path: old/file/path/old_file.apk
      new-file-path: new/file/path/new_file.apk
      diffuse-repo: JakeWharton/diffuse
      lib-version: 0.1.0

the default setup is now:

  - id: diffuse
    uses: usefulness/[email protected]
    with:
      old-file-path: old/file/path/old_file.apk
      new-file-path: new/file/path/new_file.apk
      diffuse-repo: usefulness/diffuse
      lib-version: latest

Removed

[breaking] Removed fork-version in favor of overriding the source diffuse-repo and using single lib-version input.