6 Commits
Author SHA1 Message Date
TheAssassin af96f4295e Fix installation of 32-bit deps 2020-12-11 15:17:30 +01:00
TheAssassin f2f7244b2e Fix actions workflow syntax, mk. 2 2020-12-11 15:14:33 +01:00
TheAssassin 873c6be24a Fix actions workflow syntax 2020-12-11 15:12:44 +01:00
TheAssassin e15aec3a97 Check out submodules in workflow 2020-12-11 15:09:46 +01:00
TheAssassin f95b4475d2 Build at least once every month 2020-12-11 15:08:23 +01:00
TheAssassin 4750a08b03 Switch to GitHub actions 2020-12-11 15:06:24 +01:00
4 changed files with 3 additions and 8 deletions
Binary file not shown.
+2 -2
View File
@@ -11,7 +11,7 @@ on:
jobs:
appimage-x86_64:
name: AppImage x86_64
runs-on: ubuntu-18.04
runs-on: ubuntu-16.04
env:
ARCH: x86_64
steps:
@@ -28,7 +28,7 @@ jobs:
appimage-i386:
name: AppImage i386
runs-on: ubuntu-18.04
runs-on: ubuntu-16.04
env:
ARCH: i386
steps:
+1 -2
View File
@@ -15,6 +15,7 @@ When calling linuxdeploy, just add `--output appimage` to enable the plugin. Aft
*For more information, see the [official AppImage packaging guide](https://docs.appimage.org/packaging-guide/native-binaries.html).*
### Standalone usage
Like all linuxdeploy plugins, linuxdeploy-plugin-appimage is a standalone tool and can be used without linuxdeploy.
@@ -28,7 +29,6 @@ The official linuxdeploy AppImage ships with a fairly recent version of the plug
*For more information on how linuxdeploy's plugin system works, please refer to [the documentation](https://docs.appimage.org/packaging-guide/linuxdeploy-user-guide.html#plugin-system).*
### Optional variables
linuxdeploy-plugin-appimage can be configured using environment variables.
@@ -38,4 +38,3 @@ linuxdeploy-plugin-appimage can be configured using environment variables.
- `SIGN_KEY=key_id`: GPG Key ID to use for signing. This environment variable is only used if `SIGN` is set.
- `VERBOSE=1`: set this variable to any value to enable verbose output
- `OUTPUT=filename`: change filename of resulting AppImage
- `NO_APPSTREAM=1`: skip checking AppStream metadata for issues
-4
View File
@@ -129,10 +129,6 @@ int main(const int argc, const char* const* const argv) {
args.push_back(strdup(getenv("OUTPUT")));
}
if (getenv("NO_APPSTREAM") != nullptr) {
args.push_back(strdup("--no-appstream"));
}
args.push_back(nullptr);
std::cerr << "Running command: " << pathToAppimagetool;