Skip to content

Commit bde4928

Browse files
authored
Change sysget to roboll/helmfile on the test suite (#2)
The sysget repo apparently has been deleted and now responds with 404.
1 parent c20109b commit bde4928

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

.github/workflows/test.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jobs:
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v2
15-
- name: Test latest tag of sysget
16-
id: sysget
15+
- name: Test latest tag of the old helmfile repo
16+
id: helmfile
1717
uses: ./
1818
with:
19-
repo: https://codeberg.org/novaburst-dev/sysget.git
20-
- name: Test latest tag of sysget (no v)
21-
id: sysget-v
19+
repo: https://github.com/roboll/helmfile.git
20+
- name: Test latest tag of helmfile (with v, equivalent to just latest tag)
21+
id: helmfile-v
2222
uses: ./
2323
with:
24-
repo: https://codeberg.org/novaburst-dev/sysget.git
25-
tag: '^[^v]'
24+
repo: https://github.com/roboll/helmfile.git
25+
tag: '^v'
2626
- name: Test last RC of Linux v4.15
2727
id: linux-415
2828
uses: ./
@@ -43,8 +43,8 @@ jobs:
4343
tag: '^go1\.12.[0-9]+$'
4444
- name: Test tags
4545
run: |
46-
./test.sh "${{ steps.sysget.outputs.tag }}" = "v2.3"
47-
./test.sh "${{ steps.sysget-v.outputs.tag }}" = "2.4.2"
46+
./test.sh "${{ steps.helmfile.outputs.tag }}" = "v0.144.0"
47+
./test.sh "${{ steps.helmfile-v.outputs.tag }}" = "v0.144.0"
4848
./test.sh "${{ steps.linux-415.outputs.tag }}" = "v4.15-rc9"
4949
./test.sh "${{ steps.gmnhg-02.outputs.tag }}" = "v0.2.0"
5050
./test.sh "${{ steps.go-112.outputs.tag }}" = "go1.12.17"

0 commit comments

Comments
 (0)