Skip to content

Commit 8bf0982

Browse files
committed
removes baseurl
Signed-off-by: Ashraf Fouda <[email protected]>
1 parent 4831a16 commit 8bf0982

File tree

7 files changed

+6
-20
lines changed

7 files changed

+6
-20
lines changed

.github/workflows/bin-package-18.04.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@ jobs:
4747
uses: threefoldtech/publish-flist@master
4848
with:
4949
threefold: ${{ secrets.token }}
50-
baseurl: "https://hub.grid.tf"
5150
action: publish
5251
user: tf-autobuilder
5352
root: bins/releases/${{ inputs.package }}
@@ -57,7 +56,6 @@ jobs:
5756
if: success() && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main_new')
5857
with:
5958
threefold: ${{ secrets.token }}
60-
baseurl: "https://hub.grid.tf"
6159
action: tag
6260
user: tf-autobuilder
6361
name: ${{ steps.tag.outputs.reference }}/${{ inputs.package }}.flist

.github/workflows/bin-package-no-tag.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ jobs:
3636
uses: threefoldtech/publish-flist@master
3737
with:
3838
threefold: ${{ secrets.token }}
39-
# baseurl: https://hub.grid.tf
4039
action: publish
4140
user: tf-autobuilder
4241
root: bins/releases/${{ inputs.package }}

.github/workflows/bin-package.yaml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,6 @@ jobs:
5858
uses: threefoldtech/publish-flist@master
5959
with:
6060
threefold: ${{ secrets.token }}
61-
baseurl: "https://hub.grid.tf"
6261
action: publish
6362
user: tf-autobuilder
6463
root: bins/releases/${{ inputs.package }}
@@ -68,7 +67,6 @@ jobs:
6867
if: success() && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main_new')
6968
with:
7069
threefold: ${{ secrets.token }}
71-
baseurl: "https://hub.grid.tf"
7270
action: tag
7371
user: tf-autobuilder
7472
name: ${{ steps.tag.outputs.reference }}/${{ inputs.package }}.flist

.github/workflows/grid-deploy.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@ jobs:
2525
uses: threefoldtech/publish-flist@master
2626
with:
2727
threefold: ${{ secrets.HUB_AUTOMATION_TOKEN }}
28-
baseurl: "https://hub.grid.tf"
2928
action: crosslink
3029
user: tf-zos
3130
name: zos:${{ github.event.inputs.grid }}-3:latest.flist

.github/workflows/publish-bootstrap.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ jobs:
3939
user: tf-autobuilder
4040
root: archive
4141
threefold: ${{ secrets.HUB_AUTOMATION_TOKEN }}
42-
baseurl: "https://hub.grid.tf"
4342
name: ${{ steps.setname.outputs.build }}
4443
- name: Symlink flist (development)
4544
if: success()
@@ -48,7 +47,6 @@ jobs:
4847
action: symlink
4948
user: tf-autobuilder
5049
threefold: ${{ secrets.HUB_AUTOMATION_TOKEN }}
51-
baseurl: "https://hub.grid.tf"
5250
name: ${{ steps.setname.outputs.build }}
5351
target: bootstrap-v4:development.flist
5452
- name: Symlink flist (release)
@@ -58,6 +56,5 @@ jobs:
5856
action: symlink
5957
user: tf-autobuilder
6058
threefold: ${{ secrets.HUB_AUTOMATION_TOKEN }}
61-
baseurl: "https://hub.grid.tf"
6259
name: ${{ steps.setname.outputs.build }}
6360
target: bootstrap-v4:latest.flist

.github/workflows/publish.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,6 @@ jobs:
6060
uses: threefoldtech/publish-flist@master
6161
with:
6262
threefold: ${{ secrets.HUB_AUTOMATION_TOKEN }}
63-
baseurl: "https://hub.grid.tf"
6463
action: publish
6564
user: tf-autobuilder
6665
root: archive
@@ -75,7 +74,6 @@ jobs:
7574
if: success() && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v') || github.ref == 'refs/heads/main_new')
7675
with:
7776
threefold: ${{ secrets.HUB_AUTOMATION_TOKEN }}
78-
baseurl: "https://hub.grid.tf"
7977
action: tag
8078
user: tf-autobuilder
8179
name: ${{ steps.tag.outputs.reference }}/zos.flist
@@ -89,7 +87,6 @@ jobs:
8987
uses: threefoldtech/publish-flist@master
9088
with:
9189
threefold: ${{ secrets.HUB_AUTOMATION_TOKEN }}
92-
baseurl: "https://hub.grid.tf"
9390
action: crosstag
9491
user: tf-zos
9592
name: development-v3light

.github/workflows/zos-update-worker-main.yml

Lines changed: 6 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ name: Zos Update Worker
22

33
defaults:
44
run:
5-
working-directory: tools/zos-update-worker
5+
working-directory: tools/zos-update-worker
66

7-
on:
7+
on:
88
push:
99
paths:
1010
- tools/zos-update-worker/**
@@ -21,20 +21,20 @@ jobs:
2121

2222
- name: Install GO
2323
uses: actions/setup-go@v3
24-
with:
24+
with:
2525
go-version: 1.19
2626

2727
- name: golangci-lint
2828
uses: golangci/golangci-lint-action@v3
2929
with:
3030
args: --timeout 3m --verbose
31-
working-directory: tools/zos-update-worker
31+
working-directory: tools/zos-update-worker
3232

3333
- name: staticcheck
3434
uses: dominikh/[email protected]
3535
with:
3636
version: "2022.1.3"
37-
working-directory: tools/zos-update-worker
37+
working-directory: tools/zos-update-worker
3838
env:
3939
GO111MODULE: on
4040

@@ -43,8 +43,6 @@ jobs:
4343
with:
4444
gofmt-flags: "-l -d"
4545
gofmt-path: "tools/zos-update-worker"
46-
46+
4747
- name: Test
4848
run: go test -v ./...
49-
50-

0 commit comments

Comments
 (0)