-
Notifications
You must be signed in to change notification settings - Fork 122
Use the latest stable Python3 for Archery #713
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
Preview URL: https://kou.github.io/arrow-site If the preview URL doesn't work, you may forget to configure your fork repository for preview. |
| @@ -28,7 +34,6 @@ | |||
| jobs: | |||
| devdocs: | |||
| name: Fetch and upload dev docs | |||
| if: github.repository == 'apache/arrow-site' | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is for testing on PR and fork.
| echo "::set-output name=LATEST::$(archery crossbow latest-prefix --no-fetch nightly-tests)" | ||
| id: build | ||
| echo "LATEST=$(archery crossbow latest-prefix --no-fetch nightly-tests)" >> "${GITHUB_ENV}" | ||
| - name: Download the crossbow docs artifact | ||
| run: | | ||
| archery crossbow --queue-path ./crossbow download-artifacts --no-fetch --task-filter "*docs" --target-dir downloads ${{ steps.build.outputs.LATEST }} | ||
| archery crossbow \ | ||
| --queue-path ./crossbow \ | ||
| download-artifacts \ | ||
| --no-fetch \ | ||
| --task-filter "*docs" \ | ||
| --target-dir downloads \ | ||
| ${LATEST} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is not a needed change. This just stop using deprecate ::set-output.
| if: >- | ||
| github.repository == 'apache/arrow-site' && | ||
| (github.event_name == 'workflow_dispatch' || | ||
| github.event_name == 'schedule') |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Upload docs only on apache/arrow-site.
Fix #708