Skip to content

Commit cdf76b9

Browse files
authored
Remove the hosted environment provider next release (#226)
1 parent 434c8fa commit cdf76b9

File tree

2 files changed

+3
-20
lines changed

2 files changed

+3
-20
lines changed

.github/workflows/update-release.yml

Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -17,21 +17,6 @@ jobs:
1717
echo "version=$VERSION" >> $GITHUB_OUTPUT
1818
outputs:
1919
version: ${{ steps.getVersion.outputs.version }}
20-
environmentProvider:
21-
runs-on: ubuntu-latest
22-
env:
23-
GH_TOKEN: ${{ github.token }}
24-
steps:
25-
- uses: actions/checkout@v4
26-
with:
27-
repository: eiffel-community/etos-environment-provider
28-
- name: Get version
29-
id: getVersion
30-
run: |
31-
VERSION=$(gh release view --json tagName --jq .tagName)
32-
echo "version=$VERSION" >> $GITHUB_OUTPUT
33-
outputs:
34-
version: ${{ steps.getVersion.outputs.version }}
3520
suiteStarter:
3621
runs-on: ubuntu-latest
3722
env:
@@ -64,7 +49,7 @@ jobs:
6449
version: ${{ steps.getVersion.outputs.version }}
6550
update_manifest:
6651
runs-on: ubuntu-latest
67-
needs: [suiteRunner, environmentProvider, suiteStarter, api]
52+
needs: [suiteRunner, suiteStarter, api]
6853
steps:
6954
- uses: actions/checkout@v4
7055
- name: Update manifests
@@ -77,7 +62,6 @@ jobs:
7762
changes: |
7863
{
7964
"resources[0]": "github.com/eiffel-community/etos-suite-runner//manifests/base?ref=${{ needs.suiteRunner.outputs.version }}",
80-
"resources[1]": "github.com/eiffel-community/etos-environment-provider//manifests/base?ref=${{ needs.environmentProvider.outputs.version }}",
81-
"resources[2]": "github.com/eiffel-community/etos-suite-starter//manifests/base?ref=${{ needs.suiteStarter.outputs.version }}",
82-
"resources[3]": "github.com/eiffel-community/etos-api//manifests/base?ref=${{ needs.api.outputs.version }}"
65+
"resources[1]": "github.com/eiffel-community/etos-suite-starter//manifests/base?ref=${{ needs.suiteStarter.outputs.version }}",
66+
"resources[2]": "github.com/eiffel-community/etos-api//manifests/base?ref=${{ needs.api.outputs.version }}"
8367
}

manifests/release/kustomization.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@ apiVersion: kustomize.config.k8s.io/v1beta1
22
kind: Kustomization
33
resources:
44
- github.com/eiffel-community/etos-suite-runner//manifests/base?ref=4.1.1
5-
- github.com/eiffel-community/etos-environment-provider//manifests/base?ref=3.2.2
65
- github.com/eiffel-community/etos-suite-starter//manifests/base?ref=2.4.0
76
- github.com/eiffel-community/etos-api//manifests/base?ref=2.1.1
87
components:

0 commit comments

Comments
 (0)