Skip to content

Commit

Permalink
I hate how slow the testing turnaround is on actions
Browse files Browse the repository at this point in the history
  • Loading branch information
dginovker committed Jan 5, 2024
1 parent 7a82ed5 commit 5cd8695
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/c.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/visualbasic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 5cd8695

Please sign in to comment.