From 9d94c933c7348d4e54b344f9a6f2e751ed0b1ddb Mon Sep 17 00:00:00 2001 From: Ryan Emerson Date: Fri, 22 Jan 2021 13:37:15 +0000 Subject: [PATCH] Remove cli-release-linux.yml --- .github/workflows/cli-release-linux.yml | 37 ------------------------- 1 file changed, 37 deletions(-) delete mode 100644 .github/workflows/cli-release-linux.yml diff --git a/.github/workflows/cli-release-linux.yml b/.github/workflows/cli-release-linux.yml deleted file mode 100644 index 50f8699a..00000000 --- a/.github/workflows/cli-release-linux.yml +++ /dev/null @@ -1,37 +0,0 @@ -name: cli-release-linux - -on: - release: - types: [published] - -jobs: - build: - runs-on: ubuntu-latest - - steps: - - uses: actions/checkout@v2 - - - name: Install graalvm - uses: DeLaGuardo/setup-graalvm@3 - with: - graalvm-version: '20.3.0.java11' - - - name: Install native-image - run: gu install native-image - - - name: Set version - run: ./mvnw versions:set -DnewVersion="${{ github.event.release.tag_name }}" - - - name: Build native executable - run: ./mvnw package -Dnative - - - name: Upload CLI native executable - id: upload-cli-native-executable - uses: actions/upload-release-asset@v1 - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - with: - upload_url: ${{ github.event.release.upload_url }} - asset_path: ./cli/target/infinispan-quarkus-cli-${{ github.event.release.tag_name }}-runner - asset_name: infinispan-cli-${{ github.event.release.tag_name }}-linux - asset_content_type: application/octet-stream