diff options
author | Thomas F. K. Jorna <[email protected]> | 2022-01-29 15:31:51 +0100 |
---|---|---|
committer | Thomas F. K. Jorna <[email protected]> | 2022-01-29 15:31:51 +0100 |
commit | c475122f76370718dc5fdcb18006c1921d9a58e8 (patch) | |
tree | 2795f63483f9970637ace195d16c941460ceffe5 /.github/workflows | |
parent | bb7036f4cfd279de388e9850b452b252fefb8e5b (diff) |
feat(preview): remove heading if heading is title
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/cd.yml | 6 | ||||
-rw-r--r-- | .github/workflows/ci.yml | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/.github/workflows/cd.yml b/.github/workflows/cd.yml index a421f56..22e4934 100644 --- a/.github/workflows/cd.yml +++ b/.github/workflows/cd.yml @@ -49,9 +49,9 @@ 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: diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 522eaf0..9a3a6b0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,8 +51,8 @@ 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 ... # End of ci.yml |