mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-02-17 03:45:38 +00:00
24 lines
502 B
YAML
24 lines
502 B
YAML
|
|
name: "Push main on Flathub"
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
Pushing_main_into_flathub:
|
|
runs-on:
|
|
- ubuntu-latest
|
|
steps:
|
|
|
|
- name: Checkout RetroDECK repository
|
|
uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Preparing data to push
|
|
run: automation_tools/flathub_push_main.sh
|
|
env:
|
|
GIT_NAME: ${{ secrets.GITNAME }}
|
|
GIT_MAIL: ${{ secrets.GITMAIL }}
|
|
GH_TOKEN: ${{ secrets.FLATHUB_PUSH }} |