Merge branch 'master' into github-actions

This commit is contained in:
AZMCode
2020-08-19 08:02:21 -04:00
committed by GitHub

View File

@@ -2,6 +2,7 @@ name: CI
on: ["push"]
jobs:
# Test:
# runs-on: ubuntu-latest
# steps:
@@ -25,6 +26,7 @@ jobs:
- name: Parsing Package Info
id: packageInfo
run: |
echo "::set-output name=package-name::$(jq -r .name package.json)"
echo "::set-output name=package-version::$(jq -r .version package.json)"
@@ -38,6 +40,7 @@ jobs:
- name: Build
run: npm run build:all
- name: Upload a Build Artifact
uses: actions/upload-artifact@v2.1.4
@@ -54,7 +57,6 @@ jobs:
needs: Build
steps:
- name: Download Build Artifact
uses: actions/download-artifact@v2.0.5
with: