Ubuntu #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Create Ubuntu Docker image containing all the packages required for a full build of NeoMutt. | |
name: Ubuntu | |
on: | |
push: | |
paths: | |
- '.github/workflows/ubuntu.yml' | |
- 'ubuntu.22.04/Dockerfile' | |
schedule: | |
- cron: '0 3 1 * *' | |
# 1st of the month at 03:00 | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build Ubuntu | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
name: Checkout repository | |
- uses: pmorelli92/github-container-registry-build-push@2.2.1 | |
name: Build Ubuntu | |
with: | |
github-push-secret: ${{secrets.GITHUB_TOKEN}} | |
docker-image-name: ubuntu | |
docker-image-tag: latest | |
dockerfile-path: ./ubuntu.22.04/Dockerfile | |