From a18a3e330a3337514c8212c7f9a5ce6839799bd4 Mon Sep 17 00:00:00 2001 From: fortiersteven <74146408+fortiersteven@users.noreply.github.com> Date: Sat, 14 May 2022 14:51:05 -0400 Subject: [PATCH] Delete SLPS_prerelease.yml --- .github/workflows/SLPS_prerelease.yml | 57 --------------------------- 1 file changed, 57 deletions(-) delete mode 100644 .github/workflows/SLPS_prerelease.yml diff --git a/.github/workflows/SLPS_prerelease.yml b/.github/workflows/SLPS_prerelease.yml deleted file mode 100644 index 4d91104..0000000 --- a/.github/workflows/SLPS_prerelease.yml +++ /dev/null @@ -1,57 +0,0 @@ -name: Generate New SLPS and Release - -on: - workflow_dispatch - -env: - base_directory: c:/actions-runner/_work/ - -# A workflow run is made up of one or more jobs that can run sequentially or in parallel -jobs: - startVM: - runs-on: ubuntu-latest - steps: - - #Test again - - name: Login to AZ CLI - uses: azure/login@v1 - with: - creds: ${{ secrets.AZURE_CREDENTIALS }} - - - run: - az vm start -g ${{ secrets.AZURE_RESSOURCE }} -n ${{ secrets.AZURE_VM }} - - pythonCode: - runs-on: self-hosted - needs: startVM - steps: - - - name: Checkout PythonLib - uses: actions/checkout@v3 - - - - name: Checkout TOR Repo - uses: actions/checkout@v3 - with: - repository: SymphoniaLauren/Tales-of-Rebirth - path: ${{env.base_directory}} - - - - - name: Generate New SLPS - working-directory: ${{env.base_directory}} - run: - python ${{env.base_directory}}/PythonLib/ToolsTales_Executable.py --game TOR pack SLPS - - closeVM: - runs-on: ubuntu-latest - needs: pythonCode - steps: - - - name: Login to AZ CLI - uses: azure/login@v1 - with: - creds: ${{ secrets.AZURE_CREDENTIALS }} - - - run: - az vm stop -g ${{ secrets.AZURE_RESSOURCE }} -n ${{ secrets.AZURE_VM }}