add manual Github Actions workflow for regenerating apt lists
Equivalent of `./scripts/package_uploader.sh --regenerate` which needs admin credentials for apt repo.
This commit is contained in:
parent
972e012060
commit
fe6d6d4044
19
.github/workflows/rebuild_metadata_manual.yml
vendored
Normal file
19
.github/workflows/rebuild_metadata_manual.yml
vendored
Normal file
@ -0,0 +1,19 @@
|
|||||||
|
name: Force rebuild metadata
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
repo-maintenance:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: Clone repository
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
- name: Trigger apt package lists regeneration on Bintray
|
||||||
|
env:
|
||||||
|
BINTRAY_USERNAME: xeffyr
|
||||||
|
BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }}
|
||||||
|
BINTRAY_GPG_SUBJECT: termux
|
||||||
|
BINTRAY_GPG_PASSPHRASE: ${{ secrets.BINTRAY_GPG_PASSWORD }}
|
||||||
|
run: |
|
||||||
|
./scripts/package_uploader.sh -r
|
Loading…
Reference in New Issue
Block a user