see if i get token correctly to config
All checks were successful
Run nightly tests / build (push) Successful in 34s
Run nightly tests / nightly-tests-play (push) Successful in 15s
Run short tests / run-tests (push) Successful in 1m17s

This commit is contained in:
2025-05-24 13:50:28 +02:00
parent 1290bdb0fa
commit 959bd79d1a

View File

@@ -30,12 +30,15 @@ jobs:
runs-on: [ubuntu-latest, cloud]
needs: build
steps:
- name: Test if I can get the token
- name: Put token into config file
run: |
echo "TOKEN=${{ secrets.TEST_TOKEN }}" > $GITHUB_ENV
- name: Print the token
run: |
echo "The token is: ${{ secrets.TEST_TOKEN }}"
cat <<EOF > ${GITHUB_WORKSPACE}/config.json
{
"token": "${{ secrets.TEST_TOKEN }}"
}
EOF
- name: print config file
run: cat ${GITHUB_WORKSPACE}/config.json
# - name: Download artifacts
# uses: actions/download-artifact@v3
# with: