mirror of
				https://github.com/hiyouga/LLaMA-Factory.git
				synced 2025-11-04 18:02:19 +08:00 
			
		
		
		
	release v0.8.2
Former-commit-id: 3050bbe51d46acd8473275d2713fc28932e4a3d3
This commit is contained in:
		
							parent
							
								
									c65f7e9bd5
								
							
						
					
					
						commit
						b631bdc5b7
					
				
							
								
								
									
										39
									
								
								.github/workflows/publish.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								.github/workflows/publish.yml
									
									
									
									
										vendored
									
									
										Normal file
									
								
							@ -0,0 +1,39 @@
 | 
			
		||||
name: publish
 | 
			
		||||
 | 
			
		||||
on:
 | 
			
		||||
  release:
 | 
			
		||||
    types: [published]
 | 
			
		||||
 | 
			
		||||
jobs:
 | 
			
		||||
  publish:
 | 
			
		||||
    name: Upload release to PyPI
 | 
			
		||||
 | 
			
		||||
    runs-on: ubuntu-latest
 | 
			
		||||
 | 
			
		||||
    environment:
 | 
			
		||||
      name: release
 | 
			
		||||
      url: https://pypi.org/p/llamafactory
 | 
			
		||||
 | 
			
		||||
    permissions:
 | 
			
		||||
      id-token: write
 | 
			
		||||
 | 
			
		||||
    steps:
 | 
			
		||||
      - name: Checkout
 | 
			
		||||
        uses: actions/checkout@v4
 | 
			
		||||
 | 
			
		||||
      - name: Set up Python
 | 
			
		||||
        uses: actions/setup-python@v5
 | 
			
		||||
        with:
 | 
			
		||||
          python-version: "3.8"
 | 
			
		||||
      
 | 
			
		||||
      - name: Install dependencies
 | 
			
		||||
        run: |
 | 
			
		||||
          python -m pip install --upgrade pip
 | 
			
		||||
          python -m pip install build
 | 
			
		||||
      
 | 
			
		||||
      - name: Build package
 | 
			
		||||
        run: |
 | 
			
		||||
          python -m build
 | 
			
		||||
      
 | 
			
		||||
      - name: Publish package
 | 
			
		||||
        uses: pypa/gh-action-pypi-publish@release/v1
 | 
			
		||||
@ -23,7 +23,7 @@ import trl
 | 
			
		||||
from transformers.utils import is_torch_cuda_available, is_torch_npu_available
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
VERSION = "0.8.2.dev0"
 | 
			
		||||
VERSION = "0.8.2"
 | 
			
		||||
 | 
			
		||||
 | 
			
		||||
def print_env() -> None:
 | 
			
		||||
 | 
			
		||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user