Skip to content

Schedule

Schedule #230

Workflow file for this run

name: Schedule
on:
schedule:
- cron: '0 0 * * 6'
workflow_dispatch:
env:
PHP_VERSION: 8.4
jobs:
security-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: shivammathur/setup-php@v2
with:
php-version: ${{ env.PHP_VERSION }}
- uses: ramsey/composer-install@v2
- run: composer security-check
docker:
runs-on: ubuntu-latest
steps:
- uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/build-push-action@v4
with:
pull: true
tags: ghcr.io/burned42/npradio:latest
push: true