From 89874d29f59c884fa84e007b2a1dc0372975da5a Mon Sep 17 00:00:00 2001 From: Ikiru Yoshizaki <3856350+guitarrapc@users.noreply.github.com> Date: Mon, 3 Oct 2022 12:50:49 +0900 Subject: [PATCH] chore: add check-artifacts --- .github/workflows/build-release.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/build-release.yml b/.github/workflows/build-release.yml index d17b688..083143a 100644 --- a/.github/workflows/build-release.yml +++ b/.github/workflows/build-release.yml @@ -114,6 +114,20 @@ jobs: asset_name: ObservableCollections.${{ env.GIT_TAG }}.unitypackage asset_content_type: application/octet-stream + check-artifacts: + if: github.event.inputs.dry-run == 'true' + needs: [update-packagejson, build-dotnet, build-unity] + runs-on: ubuntu-latest + timeout-minutes: 10 + steps: + - uses: Cysharp/Actions/.github/actions/setup-dotnet@main + # Download(All) Artifacts to current directory + - uses: actions/download-artifact@v2 + - name: check directory + run: ls -l + - name: check artifacts + run: ls -l "./ObservableCollections.${{ env.GIT_TAG }}.unitypackage + cleanup: if: needs.update-packagejson.outputs.is-branch-created == 'true' needs: [update-packagejson, build-unity]