Skip to content

Bump actions/download-artifact from 7 to 8 (#36) #18

Bump actions/download-artifact from 7 to 8 (#36)

Bump actions/download-artifact from 7 to 8 (#36) #18

Workflow file for this run

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