-
Notifications
You must be signed in to change notification settings - Fork 2
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
Showing
7 changed files
with
95 additions
and
23 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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: AppImage | ||
on: | ||
push: | ||
tags: | ||
- v* | ||
|
||
jobs: | ||
AppImage: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
submodules: true | ||
|
||
- name: Build | ||
run: | | ||
./dist/appimage/build.sh | ||
echo "DANTON_APPIMAGE=danton-$(arch).AppImage" >> $GITHUB_ENV | ||
echo "DANTON_VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_ENV | ||
- name: Upload | ||
uses: AButler/[email protected] | ||
with: | ||
files: ${{ env.DANTON_APPIMAGE }} | ||
repo-token: ${{ secrets.GITHUB_TOKEN }} | ||
release-tag: ${{ env.DANTON_VERSION }} |
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,2 @@ | ||
#! /bin/bash | ||
DANTON_PREFIX=$APPDIR $APPDIR/bin/danton $* |
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,27 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<component type="desktop-application"> | ||
<id>danton</id> | ||
<metadata_license>MIT</metadata_license> | ||
<project_license>LGL-3.0</project_license> | ||
<name>Danton</name> | ||
<summary> | ||
Simulate the coupled transport of ultra high energy taus and neutrinos | ||
through the Earth, by Monte-Carlo. | ||
</summary> | ||
<description> | ||
<p> Danton (DecAying Taus frOm Neutrinos) is an executable dedicated to | ||
the sampling of decaying taus from ultra high energy neutrinos | ||
interacting in the Earth. It can run in forward or backward | ||
Monte Carlo. it can also be configured to sample tau fluxes instead | ||
of decay densities, or to sample transmitted neutrinos fluxes. The | ||
danton executable takes a data card in JSON format as argument. | ||
Data cards syntax and examples are available from | ||
https://github.com/niess/danton. | ||
</p> | ||
</description> | ||
<launchable type="desktop-id">danton.desktop</launchable> | ||
<url type="homepage">https://github.com/niess/danton</url> | ||
<provides> | ||
<binary>danton</binary> | ||
</provides> | ||
</component> |
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,8 @@ | ||
[Desktop Entry] | ||
Type=Application | ||
Name=danton | ||
Exec=danton | ||
Comment=Simulate the coupled transport of ultra high energy taus and neutrinos through the Earth, by Monte-Carlo | ||
Icon=danton | ||
Categories=Science; | ||
Terminal=true |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.