Skip to content
Snippets Groups Projects
Commit 9717c31f authored by Yaroslav Lobankov's avatar Yaroslav Lobankov Committed by Yaroslav Lobankov
Browse files

ci: fix fail on artifact upload to S3 for freebsd

This patch fixes the following issue:

    Error: Unable to retrieve job ID by provided job name

The `${{ github.job }} (${{ join(matrix.*, ', ') }})` expression was
evaluated to `freebsd (Object)` instead of proper job name. It looks
like the ChristopherHX/github-act-runner agent has a bug somewhere.
Now the job name is made manually to bypass the issue.

NO_DOC=ci
NO_TEST=ci
NO_CHANGELOG=ci
parent 9bdf2bab
No related branches found
No related tags found
No related merge requests found
......@@ -70,7 +70,14 @@ jobs:
startsWith(github.ref, 'refs/heads/release/') ||
startsWith(github.ref, 'refs/tags/') )
with:
job-name: ${{ github.job }} (${{ join(matrix.*, ', ') }})
# Unfortunately, `${{ github.job }} (${{ join(matrix.*, ', ') }})` is
# evaluated to `freebsd (Object)` and that's why the job name is made
# manually. Looks like the ChristopherHX/github-act-runner agent has
# a bug somewhere.
job-name: ${{ format(
'freebsd ({0}, {1})',
matrix.freebsd-version,
matrix.tarantool-branch) }}
access-key-id: ${{ secrets.MULTIVAC_S3_ACCESS_KEY_ID }}
secret-access-key: ${{ secrets.MULTIVAC_S3_SECRET_ACCESS_KEY }}
source: ${{ env.VARDIR }}/artifacts
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment