e06fe8e8c6
Self-hosted runner (benchmark) / Benchmark (aws-g5-4xlarge-cache) (push) Waiting to run
New model PR merged notification / Notify new model (push) Waiting to run
Update Transformers metadata / build_and_package (push) Waiting to run
Secret Leaks / trufflehog (push) Failing after 1s
Build documentation / build (push) Failing after 1s
Build documentation / build_other_lang (push) Failing after 0s
CodeQL Security Analysis / CodeQL Analysis (push) Failing after 0s
PR CI / pr-ci (push) Failing after 1s
Slow tests on important models (on Push - A10) / Get all modified files (push) Failing after 1s
Slow tests on important models (on Push - A10) / Model CI (push) Has been skipped
53 lines
1.2 KiB
YAML
53 lines
1.2 KiB
YAML
name: Release - Conda
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- v*
|
|
branches:
|
|
- conda_*
|
|
|
|
env:
|
|
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
|
|
|
permissions:
|
|
contents: read
|
|
|
|
jobs:
|
|
build_and_package:
|
|
runs-on: ubuntu-22.04
|
|
defaults:
|
|
run:
|
|
shell: bash -l {0}
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Install miniconda
|
|
uses: conda-incubator/setup-miniconda@8ee1f361103df19b6f8c8655fd3967a8ecb162d5 # v4.0.1
|
|
with:
|
|
auto-update-conda: true
|
|
auto-activate-base: false
|
|
python-version: 3.8
|
|
activate-environment: "build-transformers"
|
|
channels: huggingface
|
|
|
|
- name: Setup conda env
|
|
run: |
|
|
conda install -c defaults anaconda-client conda-build
|
|
|
|
- name: Extract version
|
|
run: echo "TRANSFORMERS_VERSION=`python setup.py --version`" >> $GITHUB_ENV
|
|
|
|
- name: Build conda packages
|
|
run: |
|
|
conda info
|
|
conda list
|
|
conda-build .github/conda
|
|
|
|
- name: Upload to Anaconda
|
|
run: anaconda upload `conda-build .github/conda --output` --force
|