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