diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 4e4357a..6e3489c 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -34,7 +34,7 @@ jobs: runs-on: ${{ matrix.os }} strategy: matrix: - os: [ubuntu-latest, windows-latest] + os: [ubuntu-latest] steps: - uses: actions/checkout@v3 - uses: graalvm/setup-graalvm@v1 @@ -50,7 +50,7 @@ jobs: uses: actions/upload-artifact@v3 with: name: scan2dojo-${{ matrix.os }} - path: ${{ matrix.os == 'windows-latest' && 'target/scan2dojo.exe' || 'target/scan2dojo' }} + path: target/scan2dojo build-and-push-docker-image: if: github.event_name == 'push' diff --git a/scripts/install.bat b/scripts/install.bat deleted file mode 100644 index 2f83dcf..0000000 --- a/scripts/install.bat +++ /dev/null @@ -1,15 +0,0 @@ -@echo off - -:: Define variables -set CLI_NAME=scan2dojo -set VERSION=v1.0.0 -set DOWNLOAD_URL=https://github.com/moudjames23/scan2dojo/releases/download/%VERSION%/%CLI_NAME%-windows.exe - -:: Download the binary -echo Downloading %CLI_NAME% from %DOWNLOAD_URL%... -powershell -Command "Invoke-WebRequest -Uri %DOWNLOAD_URL% -OutFile %CLI_NAME%.exe" - -:: Move the binary to a directory in PATH -move %CLI_NAME%.exe C:\Windows\System32\ - -echo %CLI_NAME% installed successfully!