Skip to content

Commit

Permalink
Fix name in visual basic release
Browse files Browse the repository at this point in the history
  • Loading branch information
dginovker committed Jan 5, 2024
1 parent dfd7ac7 commit 7a82ed5
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/c.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Build and Release
name: C build and release

on:
push:
Expand Down
12 changes: 5 additions & 7 deletions .github/workflows/visualbasic.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,21 +15,19 @@ 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"

- 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"

- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
tag_name: ${{ github.ref_name }}
release_name: Release ${{ github.ref_name }}
draft: false
prerelease: false

Expand Down

0 comments on commit 7a82ed5

Please sign in to comment.