Simplify for GHCR-only builds, fix workflow bugs, remove deb/mirror/dockerhub
This commit is contained in:
parent
97014ae98c
commit
06d6e3a816
11 changed files with 42 additions and 430 deletions
25
.github/workflows/update-check.yaml
vendored
25
.github/workflows/update-check.yaml
vendored
|
|
@ -1,24 +1,19 @@
|
|||
name: update check
|
||||
|
||||
on:
|
||||
push:
|
||||
paths:
|
||||
- .github/workflows/update-check.yaml
|
||||
- update-check.py
|
||||
pull_request:
|
||||
paths:
|
||||
- .github/workflows/update-check.yaml
|
||||
- update-check.py
|
||||
schedule:
|
||||
- cron: '0 0 * * *' # runs everyday at midnight
|
||||
- cron: "0 0 * * *"
|
||||
workflow_dispatch:
|
||||
|
||||
permissions:
|
||||
contents: write
|
||||
|
||||
jobs:
|
||||
check:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@master
|
||||
with:
|
||||
token: ${{ secrets.PERSONAL_TOKEN }}
|
||||
- name: Check Update
|
||||
run: python3 update-check.py ${{ github.event_name == 'pull_request' }}
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
|
||||
- name: Check for update
|
||||
run: python3 update-check.py
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue