Skip to content

Commit

Permalink
v0.1.1
Browse files Browse the repository at this point in the history
  • Loading branch information
progre committed Oct 1, 2023
1 parent d7d65fa commit 83e4d04
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 14 deletions.
15 changes: 13 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ jobs:
./target/i686-pc-windows-msvc/release/*.dll \
./target/i686-pc-windows-msvc/release/*.exe \
./artifact/
cp LICENSE README.md ./artifact/
- uses: actions/upload-artifact@v3
with:
name: artifact
Expand All @@ -47,7 +48,9 @@ jobs:
- uses: actions/download-artifact@v2
name: artifact
- run: |
zip --junk-paths release ./artifact/junowen.exe ./artifact/junowen_hook.dll
cd artifact
zip ../junowen junowen.exe junowen_hook.dll LICENSE README.md
zip ../th19loader d3d9.dll modules/th19_onlinevsfix.dll LICENSE
- id: create_release
uses: actions/create-release@v1
env:
Expand All @@ -60,6 +63,14 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./release.zip
asset_path: ./junowen.zip
asset_name: ${{ github.event.repository.name }}.zip
asset_content_type: application/zip
- uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./th19loader.zip
asset_name: th19loader.zip
asset_content_type: application/zip
22 changes: 11 additions & 11 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ default-members = ["junowen"]
resolver = "2"

[workspace.package]
version = "0.1.0"
version = "0.1.1"
authors = ["Progre"]
license = "GPL-3.0"

Expand Down

0 comments on commit 83e4d04

Please sign in to comment.