34 lines
757 B
YAML
34 lines
757 B
YAML
name: Auto-update check
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
auto_update_check:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Checkout action code
|
|
uses: actions/checkout@v2
|
|
with:
|
|
repository: https://git.jrop.me/mpr/action-auto-update
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
ref: main
|
|
|
|
- name: Check for updates
|
|
uses: ./action-auto-update
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# - name: Install makedeb
|
|
# env:
|
|
# MAKEDEB_RELEASE: 'makedeb'
|
|
# TERM: xterm-256color
|
|
# run: |
|
|
# bash -c "$(wget -qO - 'https://shlink.makedeb.org/install')"
|
|
#
|
|
# - name: Build package
|
|
# run: makedeb -s --no-confirm
|