Max P. a84bf1ec92 chore(action): add delay to ensure environment readiness
- Introduces a 5-second sleep step for better environment stability
- Aims to prevent issues caused by unready environments during execution
2025-05-26 17:15:47 +02:00

Sync Releases to GitHub

Example Usage

name: Sync Release to GitHub

on:
  workflow_dispatch:
    inputs:
      tag:
        description: "Release tag to synchronize"
        required: false
        type: string
  release:
    types: [published, edited]

jobs:
  sync-github:
    runs-on: ubuntu-22.04

    steps:
      - name: Run Releases Sync Action
        uses: https://git.0xmax42.io/actions/releases-sync@main
        with:
          gitea_token: ${{ ACTIONS_RUNTIME_TOKEN }}
          gitea_url: https://git.0xmax42.io
          gitea_owner: maxp
          gitea_repo: ait
          tag_name: ${{ inputs.tag || github.event.release.tag_name }}
          github_token: ${{ secrets.SYNC_GITHUB_TOKEN }}
          github_owner: 0xMax42
          github_repo: ait
Description
No description provided
Readme 46 KiB
Languages
Shell 100%