diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index 90533fc4d..67d36eaf5 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -91,17 +91,3 @@ jobs: user: tf-zos name: development target: tf-autobuilder/${{ steps.tag.outputs.reference }} - # this is only here until devnet is updated for the first - # time then this can be safely deleted - # compatibility with old release - # this is needed so old machines that is already running on devnet - # gets the new code to be able to use the new release tag - - name: Crosslink flist (development) - if: success() && github.ref == 'refs/heads/main' - uses: threefoldtech/publish-flist@master - with: - token: ${{ secrets.HUB_JWT }} - action: crosslink - user: tf-zos - name: zos:development-3:latest.flist - target: tf-autobuilder/zos:${{ steps.version.outputs.version }}.flist diff --git a/pkg/gridtypes/zos/zmachine.go b/pkg/gridtypes/zos/zmachine.go index 74cf0fbd0..3133ce531 100644 --- a/pkg/gridtypes/zos/zmachine.go +++ b/pkg/gridtypes/zos/zmachine.go @@ -362,6 +362,7 @@ func (r *ZMachineResult) UnmarshalJSON(data []byte) error { IP string `json:"ip"` YggIP string `json:"ygg_ip"` PlanetaryIP string `json:"planetary_ip"` + MyceliumIP string `json:"mycelium_ip"` ConsoleURL string `json:"console_url"` } @@ -375,6 +376,7 @@ func (r *ZMachineResult) UnmarshalJSON(data []byte) error { if deprecated.YggIP != "" { r.PlanetaryIP = deprecated.YggIP } + r.MyceliumIP = deprecated.MyceliumIP r.ConsoleURL = deprecated.ConsoleURL return nil