Skip to content

Commit

Permalink
Create manual mister repo action
Browse files Browse the repository at this point in the history
  • Loading branch information
wizzomafizzo committed Jan 21, 2024
1 parent 7a646a3 commit 253a160
Showing 1 changed file with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/mister_repo.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,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

0 comments on commit 253a160

Please sign in to comment.