diff options
Diffstat (limited to '.github/workflows/cd.yml')
-rw-r--r-- | .github/workflows/cd.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index aa7a220..22e4934 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -49,14 +49,15 @@ jobs: git config --global url."https://github.com/".insteadOf ssh://[email protected]/ git config --global url."https://".insteadOf git:// git config --global url."https://".insteadOf ssh:// - npm install - npm run build - npm run export + yarn install + yarn run build + yarn run export - name: '[Add GitHub Sponsors to Readme]' uses: JamesIves/[email protected] with: token: ${{secrets.PAT}} file: 'README.md' + minimum: 500 - name: '[commit changes]' run: | |