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 5306bbd commit 2a3a571Copy full SHA for 2a3a571
1 file changed
.github/workflows/deploy.yaml
@@ -2,9 +2,8 @@ name: Generate and Deploy
2
3
on:
4
push:
5
- branches: [
6
- 'ci/**'
7
- ]
+ schedule:
+ - cron: '0 0 * * *'
8
workflow_dispatch:
9
10
jobs:
@@ -24,12 +23,12 @@ jobs:
24
23
run: yarn install
25
if: steps.yarn-cache.outputs.cache-hit != 'true'
26
27
- # - name: build
28
- # env:
29
- # COINMARKETCAP_API_KEY: ${{ secrets.COINMARKETCAP_API_KEY }}
30
- # RUNTIME_TARGET: ${{ inputs.target }}
31
- # run: |
32
- # yarn build
+ - name: build
+ env:
+ COINMARKETCAP_API_KEY: ${{ secrets.COINMARKETCAP_API_KEY }}
+ RUNTIME_TARGET: ${{ inputs.target }}
+ run: |
+ yarn build
33
34
- name: Get Package Version
35
id: package-version
0 commit comments