]> sigrok.org Git - sigrok-build.git/commitdiff
build.yml: Remove old publish action
authorSoeren Apel <redacted>
Tue, 5 Mar 2024 23:01:33 +0000 (00:01 +0100)
committerSoeren Apel <redacted>
Tue, 5 Mar 2024 23:01:33 +0000 (00:01 +0100)
.github/workflows/build.yml

index d40018009a8bc8670bc5935bf876997e7b424bde..b2f290157370e82ae7f308c477dee1956b8e5508 100644 (file)
@@ -540,44 +540,3 @@ jobs:
           generate_release_notes: false
           draft: false
           fail_on_unmatched_files: true
-
-
-  publish:
-    name: sigrok artifacts publish
-
-    runs-on: ubuntu-latest
-
-    if: |
-      (github.event_name == 'push' && github.ref == 'refs/heads/master') ||
-      (github.event_name == 'workflow_dispatch' && github.ref == 'refs/heads/master')
-    needs:
-      - build_pulseview_mxe
-      - build_sigrok-cli_mxe
-#      - build_pulseview_appimage
-#      - build_sigrok-cli_appimage
-#      - build_pulseview_macos
-#      - build_sigrok-cli_macos
-
-    steps:
-      - name: Merge artifacts
-        uses: actions/upload-artifact/merge@v4
-        with:
-          name: artifacts
-          pattern: artifact-*
-      - name: Install dependencies
-        run: |
-          # AppImage needs libfuse2 to start
-          sudo apt-get update
-          sudo apt-get install -y libfuse2
-#      - name: Download artifacts
-#        uses: actions/download-artifact@v4
-      - name: Inspect directory after downloading artifacts
-        run: ls -alFR
-      - name: Upload artifacts and create (continuous) release
-        env:
-          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
-        run: |
-            wget -q https://github.com/TheAssassin/pyuploadtool/releases/download/continuous/pyuploadtool-x86_64.AppImage
-            chmod +x pyuploadtool-x86_64.AppImage
-            ./pyuploadtool-x86_64.AppImage artifacts/*.*
-