This commit is contained in:
Mark McDowall 2023-12-24 20:45:03 -08:00
parent f501c50d51
commit 28df6f769a
2 changed files with 6 additions and 14 deletions

View File

@ -25,7 +25,7 @@ runs:
- name: Run tests - name: Run tests
shell: bash shell: bash
runs: | run: |
for i in _tests/${{ inputs.pattern }}; do for i in _tests/${{ inputs.pattern }}; do
dotnet test $i --no-build -c Release --filter ${{ inputs.filter }} dotnet test $i --no-build -c Release --filter ${{ inputs.filter }}
done done

View File

@ -69,19 +69,11 @@ jobs:
# Distribution Artifact # Distribution Artifact
- name: Publish Distribution Artifact # - name: Publish Distribution Artifact
uses: actions/upload-artifact@v4 # uses: actions/upload-artifact@v4
with: # with:
name: distribution # name: distribution
path: distribution/**/* # path: distribution/**/*
# global.json Artifact
- name: Publish global.json Artifact
uses: actions/upload-artifact@v4
with:
name: global_json
path: global.json
frontend: frontend:
runs-on: ubuntu-latest runs-on: ubuntu-latest