·
68 commits
to master
since this release
Added
- It is now possible to pass
latest
as thelib-version
argument, the action will find and use latest published release (the one with thelatest
tag on owner/repo/releases page) - Action now allows to run any Diffuse's fork using
diffuse-repo
input.
Sample:
- id: diffuse
uses: usefulness/diffuse-action@v0.7.0
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/diffuse-action@v0.7.0
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.