Ok, AI helps me to find the answer, so if somebody has a similar problem, there's a answer:
To create Addressables DLC (Downloadable Content), you can follow these general steps:
Organize your content: Determine which assets and resources you want to include in the DLC package. It's a good practice to keep the size of the DLC as small as possible to reduce download time and bandwidth usage.
Create a new Addressables group: In the Addressables window of the Unity Editor, create a new Addressables group for your DLC. You can do this by clicking the "Create Group" button and giving your group a name.
Assign assets to the group: Select the assets and resources you want to include in the DLC, and drag them into the new Addressables group you created in the previous step.
Build the Addressables content: Build the Addressables content by clicking the "Build" button in the Addressables window. This will create the necessary files and metadata required for Addressables to load your content.
Create a new DLC package: Once the Addressables content is built, create a new DLC package. This can be a ZIP file or any other format you prefer. You can use Unity's built-in packaging system or third-party tools to create the package.
Upload the DLC package: Upload the DLC package to your content delivery platform of choice (e.g. Steam, PlayStation Network, Xbox Live, etc.). Make sure to follow the guidelines and requirements of the platform for uploading and distributing DLC.
Load the DLC content: In your game, load the DLC content using the Addressables API. You can use the Addressables APIs to download and load the DLC content on demand, or preload the DLC content at specific points in your game.
Note that the specifics of each step may vary depending on your project and platform requirements. You may also need to handle authentication, encryption, and other security considerations when creating and distributing DLC.