We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 4dc85f7 + 4c35d6c commit aabd5a4Copy full SHA for aabd5a4
.github/workflows/lint.yaml
@@ -16,7 +16,7 @@ jobs:
16
- name: Set up Node.js
17
uses: actions/setup-node@v3
18
with:
19
- node-version: '18.x'
+ node-version: '20.x'
20
21
- name: Install node modules
22
run: npm install
.github/workflows/release.yml
@@ -214,7 +214,7 @@ jobs:
214
echo "Processing artifacts..."
215
ARTIFACT_DIR="${GITHUB_WORKSPACE}/artifacts/release-${TAG}"
216
if [ -d "$ARTIFACT_DIR" ]; then
217
- cp -r "${ARTIFACT_DIR}/*" "${ASSET_DIR}/"
+ cp -r ${ARTIFACT_DIR}/* ${ASSET_DIR}/
218
219
# Remove metadata files from the asset
220
rm -f "${ASSET_DIR}/.deploy_path" 2>/dev/null || true
0 commit comments