Skip to content

Commit aabd5a4

Browse files
authored
Merge pull request #395 from ma10/develop
some more fixes for the release workflow
2 parents 4dc85f7 + 4c35d6c commit aabd5a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- name: Set up Node.js
1717
uses: actions/setup-node@v3
1818
with:
19-
node-version: '18.x'
19+
node-version: '20.x'
2020

2121
- name: Install node modules
2222
run: npm install

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ jobs:
214214
echo "Processing artifacts..."
215215
ARTIFACT_DIR="${GITHUB_WORKSPACE}/artifacts/release-${TAG}"
216216
if [ -d "$ARTIFACT_DIR" ]; then
217-
cp -r "${ARTIFACT_DIR}/*" "${ASSET_DIR}/"
217+
cp -r ${ARTIFACT_DIR}/* ${ASSET_DIR}/
218218
219219
# Remove metadata files from the asset
220220
rm -f "${ASSET_DIR}/.deploy_path" 2>/dev/null || true

0 commit comments

Comments
 (0)