From 824958baaae32a29b3de8b5bc12d4fe003edc916 Mon Sep 17 00:00:00 2001 From: Andrew Anguiano Date: Tue, 10 Sep 2024 14:43:24 -0400 Subject: [PATCH] feat: Upload artifact (testing) --- .github/workflows/validate_pr_artifact.yml | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/.github/workflows/validate_pr_artifact.yml b/.github/workflows/validate_pr_artifact.yml index 3812ded023..673e9d48fc 100644 --- a/.github/workflows/validate_pr_artifact.yml +++ b/.github/workflows/validate_pr_artifact.yml @@ -7,7 +7,7 @@ on: - main jobs: - validate-pr-artifact: + validate: runs-on: ubuntu-latest steps: - name: Checkout repository @@ -19,4 +19,13 @@ jobs: - name: Validate PR Artifact uses: "./.github/actions/build-validate-artifact" with: - command-args: ${{ github.ref == 'refs/heads/main' && '--output-artifact' || '' }} + command-args: '--output-artifact' + #command-args: ${{ github.ref == 'refs/heads/main' && '--output-artifact' || '' }} + - name: Upload artifact + #if: ${{ github.ref == 'refs/heads/main' }} + uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 + with: + path: './build/*' + # release: + # needs: validate + # steps: