Skip to content

Commit

Permalink
removed some useless 'console.log' and changed the name of the artifa…
Browse files Browse the repository at this point in the history
…cts to avoid error within github actions
  • Loading branch information
danielc-n committed Sep 10, 2024
1 parent 428414e commit 9e5f8ee
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/node.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: Scribe
path: dist
path: Scribe-${{ github.run_id }}-${{ github.sha }}
overwrite: true

build-windows:
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: Scribe
name: Scribe-${{ github.run_id }}-${{ github.sha }}
path: artifacts
overwrite: true

Expand Down Expand Up @@ -156,6 +156,6 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: Scribe
name: Scribe-${{ github.run_id }}-${{ github.sha }}
path: dist
overwrite: true
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function FieldPicker({
open,
}) {
let require = fieldInfo.nValues[0] > 0;
console.log("reload of FieldPicker :", JSON.parse(jsonSpecEntry));
// console.log("reload of FieldPicker :", JSON.parse(jsonSpecEntry));

if (typeof fieldInfo.typeLiteral === typeof true || fieldInfo.typeLiteral) {
setJsonSpec((prev) => {
Expand All @@ -40,7 +40,7 @@ export function FieldPicker({
if (fieldInfo.typeEnum) {
// there only one resource to pick
if (1 === fieldInfo.nValues[1]) {
console.log(fieldInfo);
// console.log(fieldInfo);
return (
<SelectPicker
setJsonSpec={setJsonSpec}
Expand Down

0 comments on commit 9e5f8ee

Please sign in to comment.