mirror of
				https://github.com/Vomitblood/stort.git
				synced 2025-11-04 04:37:21 +08:00 
			
		
		
		
	updated github actions workflow
This commit is contained in:
		
							parent
							
								
									7e27662e0a
								
							
						
					
					
						commit
						cbe9fc1cc5
					
				
							
								
								
									
										64
									
								
								.github/workflows/build-validation.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										64
									
								
								.github/workflows/build-validation.yml
									
									
									
									
										vendored
									
									
								
							| 
						 | 
					@ -11,8 +11,27 @@ permissions:
 | 
				
			||||||
jobs:
 | 
					jobs:
 | 
				
			||||||
  build:
 | 
					  build:
 | 
				
			||||||
    runs-on: ubuntu-latest
 | 
					    runs-on: ubuntu-latest
 | 
				
			||||||
 | 
					    container:
 | 
				
			||||||
 | 
					      image: ubuntu:22.04
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    steps:
 | 
					    steps:
 | 
				
			||||||
 | 
					      - name: Install git
 | 
				
			||||||
 | 
					        run: apt update && apt install -y git
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      - name: Checkout Repository
 | 
				
			||||||
 | 
					        uses: actions/checkout@v4
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      - name: Get Variables
 | 
				
			||||||
 | 
					        run: |
 | 
				
			||||||
 | 
					          git config --global --add safe.directory /__w/stort/stort
 | 
				
			||||||
 | 
					          echo "TAG_NAME=commit-$(date +%Y%m%d)-$(git rev-parse --short HEAD)" >> $GITHUB_ENV
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      - name: Update packages
 | 
				
			||||||
 | 
					        run: apt update && apt upgrade -y
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      - name: Install dependencies for Tauri
 | 
				
			||||||
 | 
					        run: apt install -y libwebkit2gtk-4.0-dev build-essential curl wget file libssl-dev libgtk-3-dev libayatana-appindicator3-dev librsvg2-dev
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Install Rust
 | 
					      - name: Install Rust
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
          apt update && apt install -y curl
 | 
					          apt update && apt install -y curl
 | 
				
			||||||
| 
						 | 
					@ -20,8 +39,45 @@ jobs:
 | 
				
			||||||
          . "$HOME/.cargo/env"
 | 
					          . "$HOME/.cargo/env"
 | 
				
			||||||
        shell: bash
 | 
					        shell: bash
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      - name: Testing
 | 
					      - name: Check cargo version
 | 
				
			||||||
 | 
					        run: cargo --version
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      - name: Install mise
 | 
				
			||||||
        run: |
 | 
					        run: |
 | 
				
			||||||
          cargo --help
 | 
					          install -dm 755 /etc/apt/keyrings
 | 
				
			||||||
          cargo --version
 | 
					          wget -qO - https://mise.jdx.dev/gpg-key.pub | gpg --dearmor | tee /etc/apt/keyrings/mise-archive-keyring.gpg 1> /dev/null
 | 
				
			||||||
        shell: bash
 | 
					          echo 'deb [signed-by=/etc/apt/keyrings/mise-archive-keyring.gpg arch=amd64] https://mise.jdx.dev/deb stable main' | tee /etc/apt/sources.list.d/mise.list
 | 
				
			||||||
 | 
					          apt update
 | 
				
			||||||
 | 
					          apt install -y mise
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      - name: Install mise tools
 | 
				
			||||||
 | 
					        run: |
 | 
				
			||||||
 | 
					          mise install
 | 
				
			||||||
 | 
					          mise settings set experimental true
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      - name: Install bun packages
 | 
				
			||||||
 | 
					        run: mise exec bun --command 'bun install'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      - name: Build Tauri
 | 
				
			||||||
 | 
					        run: mise exec bun --command 'bun run tauri build'
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      - name: Create Release
 | 
				
			||||||
 | 
					        id: create_release
 | 
				
			||||||
 | 
					        uses: actions/create-release@v1
 | 
				
			||||||
 | 
					        env:
 | 
				
			||||||
 | 
					          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
				
			||||||
 | 
					        with:
 | 
				
			||||||
 | 
					          tag_name: ${{ env.TAG_NAME }}
 | 
				
			||||||
 | 
					          release_name: ${{ env.TAG_NAME }}
 | 
				
			||||||
 | 
					          draft: false
 | 
				
			||||||
 | 
					          prerelease: false
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					      - name: Upload build to release
 | 
				
			||||||
 | 
					        uses: actions/upload-release-asset@v1
 | 
				
			||||||
 | 
					        env:
 | 
				
			||||||
 | 
					          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
 | 
				
			||||||
 | 
					        with:
 | 
				
			||||||
 | 
					          upload_url: ${{ steps.create_release.outputs.upload_url }}
 | 
				
			||||||
 | 
					          asset_path: ./src-tauri/target/release/bundle/appimage/stort_0.1.0_amd64.AppImage
 | 
				
			||||||
 | 
					          asset_name: stort.AppImage
 | 
				
			||||||
 | 
					          asset_content_type: application/octet-stream
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue