From c950324cd9fea825ae18044b22ae67e855700b00 Mon Sep 17 00:00:00 2001 From: OMGeeky <> Date: Sun, 16 Feb 2025 01:10:25 +0100 Subject: [PATCH] Reorder NSIS installation step in release workflow --- .github/workflows/release.yml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c91ce95..14837a1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -28,14 +28,6 @@ jobs: java-version: '11' distribution: 'adopt' - - name: Install NSIS - uses: joncloud/makensis-action@v4 - env: - VERSION: ${{ env.VERSION }} - with: - script-file: packaging/Windows/ATCS_Installer.nsi - arguments: /DVERSION="${{ env.VERSION }}" - - name: Build JAR shell: bash run: | @@ -47,6 +39,14 @@ jobs: ls -la common/ATCS.jar ls -la ATCS_${{ env.VERSION }}.zip + - name: Install NSIS + uses: joncloud/makensis-action@v4 + env: + VERSION: ${{ env.VERSION }} + with: + script-file: packaging/Windows/ATCS_Installer.nsi + arguments: /DVERSION="${{ env.VERSION }}" + - name: Upload ZIP to Release uses: actions/upload-release-asset@v1 env: