From 5cd86952264db79d1d387ec474e0391ad0c79ec3 Mon Sep 17 00:00:00 2001 From: dginovker Date: Sat, 6 Jan 2024 00:10:35 +0900 Subject: [PATCH] I hate how slow the testing turnaround is on actions --- .github/workflows/c.yml | 4 ++-- .github/workflows/visualbasic.yml | 10 +++++++--- 2 files changed, 9 insertions(+), 5 deletions(-) diff --git a/.github/workflows/c.yml b/.github/workflows/c.yml index 7fea5b8..28f64db 100644 --- a/.github/workflows/c.yml +++ b/.github/workflows/c.yml @@ -31,8 +31,8 @@ jobs: env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - tag_name: ${{ github.sha }} - release_name: Release ${{ github.sha }} + tag_name: release-${{ github.sha }} + release_name: Release ${{ github.run_number }} draft: false prerelease: false - name: Upload Release Asset diff --git a/.github/workflows/visualbasic.yml b/.github/workflows/visualbasic.yml index 6ff3468..ab4a626 100644 --- a/.github/workflows/visualbasic.yml +++ b/.github/workflows/visualbasic.yml @@ -15,11 +15,15 @@ jobs: uses: actions/checkout@v2 - name: Download VBScript to Executable Converter - run: Invoke-WebRequest -Uri "https://github.com/Makazzz/VbsToExePortable/releases/download/3.1.99.1/VbsToExePortable_3.2_Dev_Test_1.paf.exe" -OutFile "VbsToExePortable.paf.exe" + run: | + Invoke-WebRequest -Uri "https://github.com/Makazzz/VbsToExePortable/releases/download/3.1.99.1/VbsToExePortable_3.2_Dev_Test_1.paf.exe" -OutFile "VbsToExePortable.paf.exe" + Get-Item "VbsToExePortable.paf.exe" - name: Convert VBScript to Executable - run: .\VbsToExePortable.paf.exe -i "client.vbs" -o "windowsxp-2009scape.exe" - + run: | + .\VbsToExePortable.paf.exe -i "client.vbs" -o "windowsxp-2009scape.exe" + Get-Item "windowsxp-2009scape.exe" + - name: Create Release id: create_release uses: actions/create-release@v1