31 lines
818 B
YAML
31 lines
818 B
YAML
name: Update Repository
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
|
|
apt-armbian-com:
|
|
uses: armbian/scripts/.github/workflows/update-repository.yml@master
|
|
|
|
with:
|
|
KEY_ID: 'repository'
|
|
|
|
secrets:
|
|
KEY_REPOSITORY: ${{ secrets.KEY_REPOSITORY }}
|
|
USER_REPOSITORY: ${{ secrets.USER_REPOSITORY }}
|
|
HOST_REPOSITORY: ${{ secrets.HOST_REPOSITORY }}
|
|
KNOWN_HOSTS_REPOSITORY: ${{ secrets.KNOWN_HOSTS_REPOSITORY }}
|
|
|
|
beta-armbian-com:
|
|
uses: armbian/scripts/.github/workflows/update-repository.yml@master
|
|
|
|
with:
|
|
KEY_ID: 'repository-beta'
|
|
|
|
secrets:
|
|
KEY_REPOSITORY: ${{ secrets.KEY_REPOSITORY_BETA }}
|
|
USER_REPOSITORY: ${{ secrets.USER_REPOSITORY }}
|
|
HOST_REPOSITORY: ${{ secrets.HOST_REPOSITORY }}
|
|
KNOWN_HOSTS_REPOSITORY: ${{ secrets.KNOWN_HOSTS_REPOSITORY }}
|