fix ci #14
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: main build | |
on: | |
push: | |
branches: [ 'main' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
include: | |
- name: "build_0_7_5" | |
viash_version: "0.7.5" | |
- name: "build_0_8_6" | |
viash_version: "0.8.6" | |
- name: "build_0_9_0_RC6" | |
viash_version: "0.9.0-RC6" | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/cache@v4 | |
with: | |
path: ~/.local/bin/viash | |
key: viash_${{ matrix.name }} | |
- uses: viash-io/viash-actions/setup@v5 | |
if: ${{ hashFiles('~/.local/bin/viash') == '' }} | |
with: | |
version: ${{ matrix.viash_version }} | |
- name: Remove target folder from .gitignore | |
run: | | |
# allow publishing the target folder | |
sed -i '/^target.*/d' .gitignore | |
- uses: viash-io/viash-actions/ns-build@v5 | |
with: | |
config_mod: .functionality.version := '${{ matrix.name }}' | |
parallel: true | |
- name: Deploy to target branch | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: . | |
publish_branch: '${{ matrix.name }}' | |
- name: Build container | |
uses: viash-io/viash-actions/ns-build@v5 | |
with: | |
parallel: true | |
config_mod: .functionality.version := '${{ matrix.name }}' | |
platform: docker | |
setup: build | |
- name: Login to container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.GTHB_USER }} | |
password: ${{ secrets.GTHB_PAT }} | |
- name: Push container | |
uses: viash-io/viash-actions/ns-build@v5 | |
with: | |
config_mod: .functionality.version := '${{ matrix.name }}' | |
platform: docker | |
setup: push |