From 929aa15c80c89555f1f5c5fc57c4d4c27650a1c8 Mon Sep 17 00:00:00 2001
From: Nat Goodspeed <nat@lindenlab.com>
Date: Mon, 28 Aug 2023 13:21:16 -0400
Subject: [PATCH] SL-18837: Experiment with download-artifact downloading all
 files.

---
 .github/workflows/build.yaml | 37 ++++++++++++++++++++----------------
 1 file changed, 21 insertions(+), 16 deletions(-)

diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
index 1cdef55f5f8..440681edb19 100644
--- a/.github/workflows/build.yaml
+++ b/.github/workflows/build.yaml
@@ -242,25 +242,30 @@ jobs:
   release:
     needs: build
     runs-on: ubuntu-latest
-    if: github.ref_type == 'tag' && startsWith(github.ref_name, 'Second_Life_')
+    ##if: github.ref_type == 'tag' && startsWith(github.ref_name, 'Second_Life_')
     steps:
-      - name: Checkout code
-        uses: actions/checkout@v3
-        with:
-          ref: ${{ github.sha }}
-
-      - name: Setup python
-        uses: actions/setup-python@v4
-        with:
-          python-version: "3.11"
+##    - name: Checkout code
+##      uses: actions/checkout@v3
+##      with:
+##        ref: ${{ github.sha }}
+##
+##    - name: Setup python
+##      uses: actions/setup-python@v4
+##      with:
+##        python-version: "3.11"
+##
+##    - name: Install PyGithub
+##      run: pip3 install PyGithub
+##
+##    - name: Unpack artifacts
+##      env:
+##        BUILD: ${{ toJSON(needs.build) }}
+##      run: .github/workflows/post_artifacts.py
 
-      - name: Install PyGithub
-        run: pip3 install PyGithub
+      - uses: actions/download-artifact@v3
 
-      - name: Unpack artifacts
-        env:
-          BUILD: ${{ toJSON(needs.build) }}
-        run: .github/workflows/post_artifacts.py
+      - name: Show what we downloaded
+        run: ls -R
 
 ##    # forked from softprops/action-gh-release
 ##    - uses: secondlife-3p/action-gh-release@v1
-- 
GitLab