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 d026e8d commit f19f5faCopy full SHA for f19f5fa
1 file changed
azure-pipelines.yml
@@ -32,8 +32,8 @@ steps:
32
script: |
33
# Tried with secure variable without success (bug?) so I am using secureFiles
34
35
- echo $WSLENV
36
- CIRCLE_TOKEN="$(cat "${CIRCLE_TOKEN_FILE:-circle-token.txt}")"
+ echo $(dirname "$0")/circle-token.txt
+ CIRCLE_TOKEN="$(cat "${CIRCLE_TOKEN_FILE:-$(dirname "$0")/circle-token.txt}")"
37
url=$(curl -H "Circle-Token: ${CIRCLE_TOKEN}" https://circleci.com/api/v1.1/project/github/WhitewaterFoundry/pengwin-rootfs-builds/latest/artifacts | grep -o 'https://[^"]*')
38
mkdir -p ARM64
39
curl -L -H "Circle-Token: ${CIRCLE_TOKEN}" "${url}" --output ARM64/install.tar.gz
0 commit comments