diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2023-08-28 13:21:16 -0400 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2023-08-28 13:21:16 -0400 |
commit | 929aa15c80c89555f1f5c5fc57c4d4c27650a1c8 (patch) | |
tree | 8bb77e0066c17c6bb13566e33274bbe190575a35 /.github/workflows | |
parent | 70e4c73baae5759b6a2bae9722fa64cfb8b0bb20 (diff) |
SL-18837: Experiment with download-artifact downloading all files.
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yaml | 37 |
1 files changed, 21 insertions, 16 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index 1cdef55f5f..440681edb1 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 |