Status quo: - Write an `.env` file in a previous action step, and have this action pick that file up Ideas: - Just pass through all environment variables of the action. Probably a very bad idea. - Add an `environment` input to the action: ```yaml - name: Deploy to Mittwald Container Hosting uses: mittwald/rp-container-deploy-action@master with: mittwald-api-token: ${{ secrets.MITTWALD_API_TOKEN }} mittwald-project-id: 'p-XXXXXX' environment: | FOO=BAR BAR=${{ secrets.BAR_SECRET }} ```
Status quo:
.envfile in a previous action step, and have this action pick that file upIdeas:
Just pass through all environment variables of the action. Probably a very bad idea.
Add an
environmentinput to the action: