This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
build #198
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: daily build | |
on: | |
schedule: | |
# build daily | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
# phase 1 | |
list: | |
runs-on: ubuntu-latest | |
outputs: | |
component_matrix: ${{ steps.set_matrix.outputs.matrix }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: viash-io/viash-actions/setup@v5 | |
- id: ns_list | |
uses: viash-io/viash-actions/ns-list@v5 | |
with: | |
platform: docker | |
src: src | |
format: json | |
- id: set_matrix | |
run: | | |
echo "matrix=$(jq -c '[ .[] | | |
{ | |
"name": (.functionality.namespace + "/" + .functionality.name), | |
"config": .info.config, | |
"dir": .info.config | capture("^(?<dir>.*\/)").dir | |
} | |
]' ${{ steps.ns_list.outputs.output_file }} )" >> $GITHUB_OUTPUT | |
# phase 2 | |
build: | |
needs: list | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
component: ${{ fromJson(needs.list.outputs.component_matrix) }} | |
steps: | |
# Remove unnecessary files to free up space. | |
- uses: data-intuitive/reclaim-the-bytes@v2 | |
- uses: actions/checkout@v4 | |
- uses: viash-io/viash-actions/setup@v5 | |
- name: Login to container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.GTHB_USER }} | |
password: ${{ secrets.GTHB_PAT }} | |
- name: Build container | |
uses: viash-io/viash-actions/ns-build@v4 | |
with: | |
platform: docker | |
src: ${{ matrix.component.dir }} | |
setup: build | |
- name: Push container | |
uses: viash-io/viash-actions/ns-build@v4 | |
with: | |
platform: docker | |
src: ${{ matrix.component.dir }} | |
setup: push |