mirror of
https://github.com/huggingface/transformers.git
synced 2025-08-03 03:31:05 +06:00
41 lines
1.0 KiB
YAML
41 lines
1.0 KiB
YAML
name: Update Transformers metadata
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- update_transformers_metadata
|
|
|
|
jobs:
|
|
build_and_package:
|
|
runs-on: ubuntu-latest
|
|
defaults:
|
|
run:
|
|
shell: bash -l {0}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Load cached virtual environment
|
|
uses: actions/cache@v2
|
|
id: cache
|
|
with:
|
|
path: ~/venv/
|
|
key: v2-metadata-${{ hashFiles('setup.py') }}
|
|
|
|
- name: Create virtual environment on cache miss
|
|
if: steps.cache.outputs.cache-hit != 'true'
|
|
run: |
|
|
python -m venv ~/venv && . ~/venv/bin/activate
|
|
pip install --upgrade pip
|
|
|
|
- name: Setup environment
|
|
run: |
|
|
. ~/venv/bin/activate
|
|
pip install git+https://github.com/huggingface/transformers#egg=transformers[dev]
|
|
|
|
- name: Update metadata
|
|
run: |
|
|
. ~/venv/bin/activate
|
|
python utils/update_metadata.py --token ${{ secrets.SYLVAIN_HF_TOKEN }} --commit_sha ${{ github.sha }}
|