We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cf8eddd commit 3e36f9fCopy full SHA for 3e36f9f
.github/workflows/build.yml
@@ -10,7 +10,7 @@ jobs:
10
runs-on: ubuntu-latest
11
env:
12
GEANT4_VERSION: "${{ github.event.inputs.version }}"
13
- GEANT4_ARCHIVE: "geant4.${{ github.event.inputs.version }}-binaries.tar.gz"
+ GEANT4_ARCHIVE: "${{ github.event.inputs.version }}-binaries.tar.gz"
14
steps:
15
- name: Check out repository code
16
uses: actions/checkout@v2
build.sh
@@ -8,7 +8,7 @@ if [ -z "$GEANT4_VERSION" ]; then
8
fi
9
# Download the source code.
-dir="geant4.$GEANT4_VERSION"
+dir="$GEANT4_VERSION"
archive="$dir.tar.gz"
url="https://geant4-data.web.cern.ch/releases/$archive"
wget "$url"
0 commit comments