We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b3b499 commit 8307698Copy full SHA for 8307698
.github/workflows/core_info_package.yml
@@ -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