Skip to content

Commit

Permalink
fix lfs
Browse files Browse the repository at this point in the history
  • Loading branch information
milesstoetzner committed Jul 16, 2023
1 parent e880d5f commit b13fcbe
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 6 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/night.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Night
on:
workflow_dispatch:
schedule:
- cron: '20 4 * * *'
- cron: '20 4 * * 2'
push:
branches:
- fix/night-workflow
Expand All @@ -14,6 +14,8 @@ jobs:
steps:
- name: (PREPARE) Checkout Repository
uses: actions/checkout@v3
with:
lfs: true

- name: (PREPARE) Setup Git
run: |
Expand Down Expand Up @@ -94,6 +96,7 @@ jobs:
# GitHub runner seems not to support ipv6, thus, we can not test on bwCloud.
# See https://github.com/actions/runner-images/issues/668
- name: (EXAMPLES) Deploy the enterprise plan of unfurl-artifacts on GCP
id: unfurl-artifacts-deploy
run: |
vintner orchestrators init unfurl
vintner orchestrators enable --orchestrator unfurl
Expand All @@ -110,4 +113,4 @@ jobs:

- name: (EXAMPLES) Undeploy the enterprise plan of unfurl-artifacts on GCP
run: vintner instances undeploy --instance artifacts
if: always()
if: failure() && (steps['unfurl-artifacts-deploy']outcome == 'failure' || steps['unfurl-artifacts-deploy']outcome == 'success')
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,9 @@

> Check out the [step-by-step guide](https://vintner.opentosca.org/variability4tosca/guides/artifacts) for the publication submitted at _CoopIS 2023_. Additional links are [below](#step-by-step-guides).
[![release](https://github.com/opentosca/opentosca-vintner/actions/workflows/release.yaml/badge.svg?branch=main)](https://github.com/opentosca/opentosca-vintner/actions/workflows/release.yaml)
[![Codacy Badge](https://app.codacy.com/project/badge/Grade/acec5103cf9b4f1bb1fa25bc5a99076d)](https://www.codacy.com/gh/OpenTOSCA/opentosca-vintner/dashboard?utm_source=github.com&utm_medium=referral&utm_content=OpenTOSCA/opentosca-vintner&utm_campaign=Badge_Grade)
[![Release](https://github.com/opentosca/opentosca-vintner/actions/workflows/release.yaml/badge.svg?branch=main)](https://github.com/opentosca/opentosca-vintner/actions/workflows/release.yaml)
[![Night](https://github.com/OpenTOSCA/opentosca-vintner/actions/workflows/night.yaml/badge.svg)](https://github.com/OpenTOSCA/opentosca-vintner/actions/workflows/night.yaml)
[![Codacy Style Badge](https://app.codacy.com/project/badge/Grade/acec5103cf9b4f1bb1fa25bc5a99076d)](https://www.codacy.com/gh/OpenTOSCA/opentosca-vintner/dashboard?utm_source=github.com&utm_medium=referral&utm_content=OpenTOSCA/opentosca-vintner&utm_campaign=Badge_Grade)
[![Contributor Covenant](https://img.shields.io/badge/Contributor%20Covenant-2.0-4baaaa.svg)](https://vintner.opentosca.org/code-of-conduct)
[![License](https://img.shields.io/badge/License-Apache_2.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
[![Platforms](https://img.shields.io/badge/Platforms-Linux%20%7C%20Windows-606c38.svg)](https://vintner.opentosca.org)
Expand Down
4 changes: 2 additions & 2 deletions docs/docs/orchestrators.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ vintner orchestrators enable --orchestrator xopera-wsl

## Unfurl
```shell linenums="1"
pip install unfurl[full]
pip install unfurl
unfurl home --init

vintner orchestrators init unfurl
Expand All @@ -32,7 +32,7 @@ vintner orchestrators enable --orchestrator unfurl

## Unfurl WSL
```shell linenums="1"
pip install unfurl[full]
pip install unfurl
unfurl home --init

vintner orchestrators init unfurl-wsl
Expand Down

0 comments on commit b13fcbe

Please sign in to comment.