28 lines
707 B
YAML
28 lines
707 B
YAML
name: Calculating PKG_MIRROR_HASH
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
target_version:
|
|
description: 'Target OpenWrt version. if empty the simple mode will be used.'
|
|
required: false
|
|
type: string
|
|
|
|
jobs:
|
|
check:
|
|
name: Calculating PKG_MIRROR_HASH of XX
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: write # To push a branch
|
|
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
ref: ${{ github.ref_name }}
|
|
fetch-depth: 0
|
|
|
|
- uses: muink/openwrt-package-mirror-hash-calculator@main
|
|
env:
|
|
COMMIT_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
MAKEFILE: Makefile
|
|
TARGET_VERSION: ${{ inputs.target_version }}
|