I want to release two zip files that are created in a Travis CI build to the GitHub Release page.
Unfortunately, only the source code is listed under assets after the deploy, but not the two zip files.
The deploy steps look like this:
deploy:
provider: releases
api_key:
secure: <api key>
file:
- "file-1.zip"
- "file-2.zip"
on:
repo: user/repo
tags: true
I've checked that the zip files are built and in the root folder of the build directory.
Does anyone have an idea what I'm doing wrong?