mirror of
https://github.com/RetroDECK/RetroDECK.git
synced 2025-04-10 19:15:12 +00:00
37 lines
1 KiB
YAML
37 lines
1 KiB
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 }}
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# - name: Commit and push changes
|
|
# uses: appleboy/git-push-action@v1.0.0
|
|
# with:
|
|
# commit_message: "Update RetroDECK to v${{ env.RELNAME }} from RetroDECK/${{ env.RD_BRANCH }}"
|
|
# branch: "${{ env.RELNAME }}"
|
|
# path: "${{ env.FOLDER_TO_PUSH }}"
|
|
# remote: "${{ env.TARGET_REPO }}"
|
|
# tag: "v${{ env.RELNAME }} --force"
|
|
# force: true
|
|
# author_name: ${{ env.GIT_NAME }}
|
|
# author_email: ${{ env.GIT_MAIL }}
|
|
# commit: true |