diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e3fc95..280d001 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,29 +23,3 @@ jobs: context: . push: false outputs: type=local,dest=build - - - name: Archive build output - run: | - mkdir -p release - zip -r release/build-output.zip build/* - - - name: Upload build output as a release asset - id: upload-release - uses: actions/upload-release-asset@v1 - with: - upload_url: ${{ steps.create_release.outputs.upload_url }} - asset_path: release/build-output.zip - asset_name: build-output.zip - asset_content_type: application/zip - - - name: Create Release - id: create_release - uses: actions/create-release@v1 - with: - tag_name: ${{ github.sha }} - release_name: Build - ${{ github.sha }} - body: | - Automated release generated by CI. - Includes the build output from the Docker build. - draft: false - prerelease: false