-
Notifications
You must be signed in to change notification settings - Fork 15
32 lines (31 loc) · 1.03 KB
/
mister_repo.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Generate MiSTer latest repo
on:
workflow_dispatch:
permissions: write-all
jobs:
mister-repo:
runs-on: ubuntu-latest
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
steps:
- uses: actions/checkout@v2
- name: Get latest TapTo release
id: taptoreleaseinfo
uses: cardinalby/git-get-release-action@v1
with:
latest: true
repo: wizzomafizzo/tapto
ref: main
- name: Download release files
run: |
DL_URL=https://github.com/wizzomafizzo/tapto/releases/download/${{ steps.taptoreleaseinfo.outputs.tag_name }}
mkdir -p _bin/releases
curl -L ${DL_URL}/tapto.sh -o _bin/releases/tapto.sh
curl -L ${DL_URL}/taptui.sh -o _bin/releases/taptui.sh
- name: Create databases
run: |
python scripts/mister/repo/generate.py ${{ steps.taptoreleaseinfo.outputs.tag_name }}
- name: Commit databases
uses: EndBug/add-and-commit@v9
with:
add: scripts/mister/repo/tapto.json -f -A