summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorThomas F. K. Jorna <[email protected]>2022-01-29 15:46:24 +0100
committerGitHub <[email protected]>2022-01-29 15:46:24 +0100
commit835c0029db437c7c2efff18f718a792ae5a1ccc0 (patch)
treeca9f60e54206f5d4736253955e327b4c48156fb2 /.github/workflows
parentf1e1769d97e4f44d7336839db587b0acbb918d99 (diff)
parentb38fa6ad4f00e6f81e11590d2fa3d612ced47e7b (diff)
Merge pull request #203 from egh/fix/106
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/cd.yml6
-rw-r--r--.github/workflows/ci.yml7
2 files changed, 7 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..6560449 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -7,6 +7,7 @@ on:
branches:
- '**'
- '!main'
+ workflow_dispatch:
defaults:
run:
shell: 'bash'
@@ -51,8 +52,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