We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c59e78 commit c0033bdCopy full SHA for c0033bd
.github/workflows/main.yml
@@ -19,6 +19,13 @@ jobs:
19
key: ${{ runner.os }}-${{ hashFiles('**/package.json') }}
20
restore-keys: |
21
${{ runner.os }}-
22
+ - name: Create .env file
23
+ run: |
24
+ touch .env
25
+ echo API_KEY = ${{ secrets.API_KEY }} >> .env
26
+ echo CHANNEL_ID = ${{ secrets.CHANNEL_ID }} >> .env
27
+ echo REFERER = ${{ secrets.REFERER }} >> .env
28
+
29
- name: Install Dependencies
30
run: yarn install
31
- name: Build
0 commit comments