Skip to content

Commit

Permalink
feat: more rendering options and improved rendering pipeline (#81)
Browse files Browse the repository at this point in the history
  • Loading branch information
Krande authored Dec 21, 2023
1 parent 85f034b commit 0fdde8c
Show file tree
Hide file tree
Showing 127 changed files with 3,294 additions and 2,195 deletions.
9 changes: 2 additions & 7 deletions .github/workflows/ci-docker-base.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,8 @@
name: ci-ada-docker-base

on:
push:
paths:
- 'images/base.Dockerfile'
- 'images/environment.yml'
- '.github/workflows/ci-docker-base.yml'
branches:
- main
workflow_dispatch:


jobs:
docker:
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/ci-docker-dev.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
name: ci-ada-docker-dev

on: push
on:
workflow_dispatch:


jobs:
docker:
Expand Down
7 changes: 3 additions & 4 deletions .github/workflows/ci-pages.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
name: ci-docs

on:
push:
branches:
- dev
- fem-static
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
Expand Down
133 changes: 0 additions & 133 deletions .github/workflows/pr-test.yml

This file was deleted.

15 changes: 13 additions & 2 deletions .github/workflows/pre-release-dispatch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,22 @@ on:
description: 'Issue Pre-Release to docker'
required: false
type: boolean
default: true
default: false
release_gitops:
description: 'Issue Pre-Release to gitops'
required: false
type: boolean
default: true
default: false
release_level:
description: 'Pre-release level (rebuild=latest tag)'
required: false
type: choice
default: "patch"
options:
- "patch"
- "minor"
- "major"
- "rebuild"


permissions:
Expand All @@ -42,6 +52,7 @@ jobs:
release_conda: ${{ github.event.inputs.release_conda }}
release_docker: ${{ github.event.inputs.release_docker }}
release_gitops: ${{ github.event.inputs.release_gitops }}
pre_release_level: ${{ github.event.inputs.release_level }}
secrets:
SOURCE_KEY: ${{ secrets.SOURCE_KEY }}
CONDA_API_TOKEN: ${{ secrets.CONDA_API_TOKEN }}
Expand Down
56 changes: 0 additions & 56 deletions .github/workflows/release.yml

This file was deleted.

Loading

0 comments on commit 0fdde8c

Please sign in to comment.