-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
16bbd58
commit 5033daf
Showing
3 changed files
with
31 additions
and
5 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -48,19 +48,42 @@ jobs: | |
# A file, directory or wildcard pattern that describes what to upload | ||
path: neutron/build/work/appSetup-win64.exe | ||
|
||
- name: Upload linux tarball | ||
- name: Upload linux x86_64 tarball | ||
uses: actions/[email protected] | ||
with: | ||
# Artifact name | ||
name: datcord-linux-x86_64 | ||
# A file, directory or wildcard pattern that describes what to upload | ||
path: neutron/build/datcord.tar.bz2 | ||
path: neutron/build/datcord-linux-x86_64.tar.bz2 | ||
|
||
- name: Upload appimage | ||
- name: Upload linux aarch64 tarball | ||
uses: actions/[email protected] | ||
with: | ||
# Artifact name | ||
name: datcord-linux-aarch64 | ||
# A file, directory or wildcard pattern that describes what to upload | ||
path: neutron/build/datcord-linux-aarch64.tar.bz2 | ||
|
||
- name: Upload Appimage | ||
uses: actions/[email protected] | ||
with: | ||
# Artifact name | ||
name: datcord-appimage-x86_64 | ||
# A file, directory or wildcard pattern that describes what to upload | ||
path: neutron/build/Datcord-x86_64.AppImage | ||
|
||
- name: Upload MacOS aarch64 installer | ||
uses: actions/[email protected] | ||
with: | ||
# Artifact name | ||
name: datcord-darwin-aarch64 | ||
# A file, directory or wildcard pattern that describes what to upload | ||
path: neutron/build/datcord-darwin-aarch64.dmg | ||
|
||
- name: Upload MacOS x86_64 installer | ||
uses: actions/[email protected] | ||
with: | ||
# Artifact name | ||
name: datcord-darwin-x86_64 | ||
# A file, directory or wildcard pattern that describes what to upload | ||
path: neutron/build/datcord-darwin-x86_64.dmg |
Submodule neutron
updated
24 files
+1 −1 | .github/workflows/test-build.yml | |
+0 −1 | .gitignore | |
+2 −2 | README.md | |
+7 −9 | configurator.py | |
+449 −265 | src/changed/browser/themes/osx/browser.css | |
+5 −17 | src/launch-app/CMakeLists.txt | |
+3 −0 | src/launch-app/compile_flags.txt | |
+0 −22 | src/launch-app/src/mac.cpp | |
+3 −10 | src/launch-app/src/main.cpp | |
+0 −295 | src/mac/Info-aarch64.plist | |
+0 −295 | src/mac/Info-x86_64.plist | |
+0 −15 | src/mozconfig.linux-aarch64 | |
+0 −11 | src/mozconfig.mac-arm | |
+0 −11 | src/mozconfig.mac-intel | |
+0 −45 | src/scripts/build.py | |
+9 −13 | src/scripts/build/download-firefox-source | |
+0 −9 | src/scripts/build/launch-app-linux-aarch64 | |
+0 −32 | src/scripts/build/launch-app-mac-arm | |
+0 −32 | src/scripts/build/launch-app-mac-intel | |
+14 −8 | src/scripts/build/linux | |
+0 −26 | src/scripts/build/linux-aarch64 | |
+0 −27 | src/scripts/build/mac-arm | |
+0 −27 | src/scripts/build/mac-intel | |
+2 −0 | src/scripts/build/windows |
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