Skip to content

Commit 8307698

Browse files
authored
Create core_info_package.yml
1 parent 1b3b499 commit 8307698

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: libretro Core Info Package
2+
3+
on:
4+
# Trigger the workflow on push, but only for the master branch
5+
push:
6+
branches:
7+
- master
8+
watch: # this is a hack that lets repo owners trigger a build by starring
9+
types: [started]
10+
if: github.actor == github.event.repository.owner.login
11+
12+
jobs:
13+
Assets:
14+
name: Bundle Core Info Files
15+
runs-on: ubuntu-latest
16+
17+
steps:
18+
- uses: actions/checkout@v2
19+
- run: cd dist/info && 7z a -mx=9 info.7z *
20+
- name: Upload core info bundle
21+
uses: svenstaro/upload-release-action@v2
22+
with:
23+
repo_token: ${{ secrets.GITHUB_TOKEN }}
24+
file: dist/info/info.7z
25+
tag: Latest
26+
asset_name: info.7z
27+
overwrite: true

0 commit comments

Comments
 (0)