mirror of
https://github.com/ARMSX2/armsx2-dependencies.git
synced 2026-08-24 16:50:25 -07:00
Compare commits
1
Commits
2022-07-24
..
main
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
adc7b01469 |
@@ -0,0 +1,34 @@
|
||||
name: Create Release
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
jobs:
|
||||
create-release:
|
||||
runs-on: windows-2022
|
||||
steps:
|
||||
- uses: actions/checkout@v3.6.0
|
||||
with:
|
||||
repository: "PCSX2/pcsx2"
|
||||
fetch-depth: 0
|
||||
submodules: false
|
||||
|
||||
- name: Build Dependencies
|
||||
shell: cmd
|
||||
run: |
|
||||
start /w .github\workflows\scripts\windows\build-dependencies.bat
|
||||
|
||||
- name: Create Dependencies Archive
|
||||
shell: cmd
|
||||
run: |
|
||||
"C:\Program Files\7-Zip\7z.exe" a pcsx2-windows-dependencies.7z .\deps
|
||||
|
||||
- name: Create Release
|
||||
uses: "marvinpinto/action-automatic-releases@latest"
|
||||
with:
|
||||
repo_token: "${{ secrets.GITHUB_TOKEN }}"
|
||||
automatic_release_tag: "latest-windows-dependencies"
|
||||
prerelease: false
|
||||
title: "Latest Dependencies Build"
|
||||
files: |
|
||||
pcsx2-windows-dependencies.7z
|
||||
Reference in New Issue
Block a user