-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: Add github-update-release-links CLI command for use by the DMG … (
#143) * feat: Add github-update-release-links CLI command for use by the DMG github action and other actions that need to update links * reverted dependency upgrade because it caused regression
- Loading branch information
Showing
19 changed files
with
972 additions
and
160 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
package ca.weblite.jdeploy; | ||
|
||
public interface BundleConstants { | ||
public static final String BUNDLE_MAC_X64 = "mac-x64"; | ||
public static final String BUNDLE_MAC_ARM64 = "mac-arm64"; | ||
public static final String BUNDLE_MAC_X64_DMG = "mac-x64-dmg"; | ||
public static final String BUNDLE_MAC_ARM64_DMG = "mac-arm64-dmg"; | ||
public static final String BUNDLE_WIN = "win"; | ||
public static final String BUNDLE_LINUX = "linux"; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.