Bump docker/login-action from 3 to 4 #17
Workflow file for this run
This file contains hidden or 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
| name: Build all | |
| # Builds all Docker images for | |
| # - storm-basesystem | |
| # - storm-dependencies | |
| on: | |
| push: | |
| branches: | |
| - main | |
| schedule: | |
| # run monthly | |
| - cron: '0 10 3 * *' | |
| pull_request: | |
| jobs: | |
| create_basesystem: | |
| # Create Docker images for basesystem | |
| uses: ./.github/workflows/basesystem.yml | |
| with: | |
| # Only push if using main on original repo (and not for pull requests or forks) | |
| push: ${{ github.repository_owner == 'stormchecker' && github.ref == 'refs/heads/main' }} | |
| secrets: inherit | |
| create_dependencies: | |
| # Create Docker images for dependencies | |
| needs: create_basesystem | |
| uses: ./.github/workflows/dependencies.yml | |
| with: | |
| # Only push if using main on original repo (and not for pull requests or forks) | |
| push: ${{ github.repository_owner == 'stormchecker' && github.ref == 'refs/heads/main' }} | |
| secrets: inherit | |