build everything in one workflow #4
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
# This is a basic workflow to help you get started with Actions | |
name: Fetch Sponge Versions | |
# Controls when the action will run. | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- latest-versions.json | |
- recommended-versions.json | |
- Dockerfile | |
- build-images.sh | |
- fetch-versions.sh | |
- .github/workflows/* | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and push | |
run: ./build-images.sh | |