commit build in canary
This commit is contained in:
parent
14b832963d
commit
cc53f626b6
3 changed files with 9 additions and 3 deletions
8
.github/workflows/canary.yaml
vendored
8
.github/workflows/canary.yaml
vendored
|
|
@ -52,6 +52,14 @@ jobs:
|
|||
name: Build package
|
||||
run: npm run build:package
|
||||
|
||||
- id: commit
|
||||
name: Commit
|
||||
run: |
|
||||
git config --global user.name github-actions
|
||||
git config --global user.email github-actions@github.com
|
||||
git add .
|
||||
git commit -m "built package"
|
||||
|
||||
- id: canary-release
|
||||
name: Create Canary Release
|
||||
env:
|
||||
|
|
|
|||
|
|
@ -6,5 +6,3 @@ pre-commit:
|
|||
prettier:
|
||||
glob: 'src/**/*.{js,scss,md,svelte}'
|
||||
run: npx prettier --write {staged_files} && git add .
|
||||
build:
|
||||
run: npm run build:package
|
||||
|
|
|
|||
|
|
@ -362,4 +362,4 @@
|
|||
"url": "https://github.com/reuters-graphics/graphics-components/issues"
|
||||
},
|
||||
"readme": "ERROR: No README data found!"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in a new issue