mirror of
https://github.com/owncast/owncast.git
synced 2024-11-23 05:14:20 +03:00
17 lines
No EOL
404 B
YAML
17 lines
No EOL
404 B
YAML
name: Build nightly docker
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 2 * * *"
|
|
|
|
jobs:
|
|
Docker:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
|
|
- name: Log into GitHub Container Registry
|
|
run: echo "${{ secrets.GH_CR_PAT }}" | docker login https://ghcr.io -u ${{ github.actor }} --password-stdin
|
|
|
|
- uses: actions/checkout@v2
|
|
- name: Setup and run
|
|
run: cd build/release && ./docker-nightly.sh |