Skip to content

Commit

Permalink
fix: path
Browse files Browse the repository at this point in the history
  • Loading branch information
guitarrapc committed Apr 23, 2024
1 parent 898a94f commit b26795e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/test-create-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: dotnet build -c Release -p:Version=${{ needs.set-tag.outputs.tag }}
- name: dotnet pack
run: dotnet pack --no-build -c Release -p:Version=${{ needs.set-tag.outputs.tag }} -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg -o ./publish
- uses: ./github/actions/upload-artifact
- uses: ./.github/actions/upload-artifact
with:
name: nuget
path: ./Sandbox/publish
Expand All @@ -73,12 +73,12 @@ jobs:
with:
ref: ${{ needs.update-packagejson.outputs.sha }}
# Store artifacts.
- uses: ./github/actions/upload-artifact
- uses: ./.github/actions/upload-artifact
with:
name: Sandbox.Unity.unitypackage
path: ./Sandbox/Sandbox.Unity/output/Sandbox.Unity.unitypackage
if-no-files-found: error
- uses: ./github/actions/upload-artifact
- uses: ./.github/actions/upload-artifact
with:
name: Sandbox.Unity.Plugin.unitypackage
path: ./Sandbox/Sandbox.Unity/output/Sandbox.Unity.Plugin.unitypackage
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ jobs:
- run: dotnet build -c Release -p:Version=${{ inputs.tag }}
- run: dotnet pack --no-build -c Release -p:Version=${{ inputs.tag }} -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg -o ./publish
- name: upload artifacts
uses: ./github/actions/upload-artifact
uses: Cysharp/Actions/.github/actionsupload-artifact@main
with:
name: nuget
path: ./Sandbox/publish
Expand Down Expand Up @@ -215,7 +215,7 @@ jobs:
- run: dotnet build -c Release -p:Version=${{ inputs.tag }}
- run: dotnet pack --no-build -c Release -p:Version=${{ inputs.tag }} -p:IncludeSymbols=true -p:SymbolPackageFormat=snupkg -o ./publish
- name: upload artifacts
uses: ./github/actions/upload-artifact
uses: Cysharp/Actions/.github/actionsupload-artifact@main
with:
name: nuget
path: ./Sandbox/publish
Expand All @@ -231,12 +231,12 @@ jobs:
with:
ref: ${{ needs.update-packagejson.outputs.sha }}
# Store artifacts.
- uses: ./github/actions/upload-artifact
- uses: Cysharp/Actions/.github/actionsupload-artifact@main
with:
name: Sandbox.Unity.unitypackage
path: ./Sandbox/Sandbox.Unity/output/Sandbox.Unity.unitypackage
if-no-files-found: error
- uses: ./github/actions/upload-artifact
- uses: Cysharp/Actions/.github/actionsupload-artifact@main
with:
name: Sandbox.Unity.Plugin.unitypackage
path: ./Sandbox/Sandbox.Unity/output/Sandbox.Unity.Plugin.unitypackage
Expand Down

0 comments on commit b26795e

Please sign in to comment.