forked from pytorch/data
-
Notifications
You must be signed in to change notification settings - Fork 0
24 lines (22 loc) · 898 Bytes
/
release.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
name: Push Official Release
on:
# [ Note: Manually Trigger the Workflow ]
# 1. Go to Actions under pytorch/data repo
# 2. In the left sidebar, click the workflow you want to run
# 3. Above the list of workflow runs, select Run workflow
# 4. Use the Branch dropdown to select the release/* branch
# 5. Click Run workflow
workflow_dispatch:
jobs:
build_test_upload:
if: github.repository == 'pytorch/data' && github.ref_type == 'tag'
uses: ./.github/workflows/_build_test_upload.yml
with:
branch: ""
pre_dev_release: false
pytorch_version: ""
secrets:
PYTORCH_BINARY_AWS_ACCESS_KEY_ID: ${{ secrets.PYTORCH_BINARY_AWS_ACCESS_KEY_ID }}
PYTORCH_BINARY_AWS_SECRET_ACCESS_KEY: ${{ secrets.PYTORCH_BINARY_AWS_SECRET_ACCESS_KEY }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
CONDA_PYTORCHBOT_TOKEN: ${{ secrets.CONDA_PYTORCHBOT_TOKEN }}