From 333b02976aa99e58b8fa8972bc89dad1475b710c Mon Sep 17 00:00:00 2001 From: mcuee Date: Sat, 12 Sep 2026 08:45:28 +0800 Subject: [PATCH] Remove release and asset jobs from deploy.yml --- .github/workflows/deploy.yml | 50 ------------------------------------ 1 file changed, 50 deletions(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ee8b3ac2..76451e93 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -26,53 +26,3 @@ on: jobs: build: uses: avrdudes/avrdude/.github/workflows/build.yml@main - - release: - needs: build - runs-on: ubuntu-latest - outputs: - upload_url: ${{ steps.create_release.outputs.upload_url }} - steps: - - name: Create Release - id: create_release - uses: actions/create-release@v1 - env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - with: - tag_name: ${{github.ref}} - release_name: AVRDUDE ${{github.ref}} - body: "See **[Release Notes](https://github.com/avrdudes/avrdude/blob/main/NEWS)** for changes" - draft: false - prerelease: false - - asset-msvc: - needs: release - runs-on: ubuntu-latest - strategy: - matrix: - include: - - { arch: x86 } - - { arch: x64 } - - { arch: arm64 } - steps: - - name: Download artifact - uses: actions/download-artifact@v8 - with: - name: avrdude-msvc-${{matrix.arch}} - - - name: Create release asset - run: >- - zip -j asset.zip - avrdude.exe - avrdude.pdb - avrdude.conf - - - name: Upload release asset - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} - with: - upload_url: ${{needs.release.outputs.upload_url}} - asset_path: ./asset.zip - asset_name: avrdude-${{github.ref_name}}-windows-${{matrix.arch}}.zip - asset_content_type: application/zip