Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build-installers.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,12 @@ jobs:
- name: Checkout
uses: actions/checkout@v5

- name: Fetch DIALS LICENSE
env:
DIALS_VERSION: ${{ inputs.version }}
run: |
curl -fsSL "https://raw.githubusercontent.com/dials/dials/v${DIALS_VERSION}/LICENSE" -o LICENSE

- name: Set up conda with constructor
uses: conda-incubator/setup-miniconda@v4
with:
Expand Down
4 changes: 4 additions & 0 deletions construct.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@ name: DIALS
version: "{{ version }}"
channels:
- "https://conda.anaconda.org/conda-forge/"
license_file: LICENSE
welcome_image: dials_logo_164x314.png
header_image: dials_header_150x57.png
icon_image: dials_icon_256x256.png
post_install: post.sh # [unix]
post_install: post.bat # [win]
default_prefix: "$HOME/dials/v{{ version }}" # [unix]
Expand Down
Binary file added dials_header_150x57.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dials_icon_256x256.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added dials_logo_164x314.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 1 addition & 0 deletions post.bat
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,7 @@ if not exist "%POWERSHELL_EXE%" (
" [void](New-Item -ItemType Directory -Force -Path $Dir);" ^
" $S = $W.CreateShortcut((Join-Path $Dir 'Launch DIALS environment.lnk'));" ^
" $S.TargetPath = '%PREFIX%\dials_env.bat';" ^
" $S.IconLocation = '%PREFIX%\icon.ico,0';" ^
" $S.WorkingDirectory = $env:USERPROFILE;" ^
" $S.Save();" ^
" Write-Output 'Shortcut created successfully'" ^
Expand Down
Loading