Release Latest #314
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
name: Release Latest | |
on: | |
workflow_dispatch: | |
# every day at 1am | |
schedule: | |
- cron: '0 1 * * *' | |
jobs: | |
base-build-test: | |
name: Base Build and Test | |
uses: ./.github/workflows/version-base-build-test.yml | |
with: | |
idris-version: latest | |
secrets: inherit | |
base-deploy: | |
name: Base Deploy | |
needs: [base-build-test] | |
uses: ./.github/workflows/version-base-deploy.yml | |
with: | |
idris-version: latest | |
secrets: inherit | |
devcontainer-build-test: | |
name: Devcontainer Build and Test | |
needs: [base-build-test] # needs cached base builds | |
uses: ./.github/workflows/version-devcontainer-build-test.yml | |
with: | |
idris-lsp-version: latest | |
idris-version: latest | |
secrets: inherit | |
devcontainer-deploy: | |
name: Devcontainer Deploy | |
needs: [base-deploy, devcontainer-build-test] # needs base deployed to registry | |
uses: ./.github/workflows/version-devcontainer-deploy.yml | |
with: | |
idris-lsp-version: latest | |
idris-version: latest | |
secrets: inherit |