ci: adding systemvars to webpack

This commit is contained in:
Hydra 2024-04-15 12:34:53 +01:00
parent cc52f399f2
commit 7db73fffb5
No known key found for this signature in database
2 changed files with 3 additions and 1 deletions

View File

@ -54,7 +54,7 @@ jobs:
run: yarn run publish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
STEAMGRIDDB_API_KEY: ${{ env.STEAMGRIDDB_API_KEY }}
STEAMGRIDDB_API_KEY: ${{ secrets.STEAMGRIDDB_API_KEY }}
- name: Create artifact
uses: actions/upload-artifact@v4

View File

@ -10,5 +10,7 @@ export const plugins = [
}),
new Dotenv({
path: "./.env",
safe: true,
systemvars: true,
}),
];