Skip to content
Snippets Groups Projects
Commit 929aa15c authored by Nat Goodspeed's avatar Nat Goodspeed
Browse files

SL-18837: Experiment with download-artifact downloading all files.

parent 70e4c73b
No related branches found
No related tags found
2 merge requests!3Update to main branch,!2Rebase onto current main branch
...@@ -242,25 +242,30 @@ jobs: ...@@ -242,25 +242,30 @@ jobs:
release: release:
needs: build needs: build
runs-on: ubuntu-latest 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: steps:
- name: Checkout code ## - name: Checkout code
uses: actions/checkout@v3 ## uses: actions/checkout@v3
with: ## with:
ref: ${{ github.sha }} ## ref: ${{ github.sha }}
##
- name: Setup python ## - name: Setup python
uses: actions/setup-python@v4 ## uses: actions/setup-python@v4
with: ## with:
python-version: "3.11" ## 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 - uses: actions/download-artifact@v3
run: pip3 install PyGithub
- name: Unpack artifacts - name: Show what we downloaded
env: run: ls -R
BUILD: ${{ toJSON(needs.build) }}
run: .github/workflows/post_artifacts.py
## # forked from softprops/action-gh-release ## # forked from softprops/action-gh-release
## - uses: secondlife-3p/action-gh-release@v1 ## - uses: secondlife-3p/action-gh-release@v1
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment