Skip to content

Commit b7bb2bb

Browse files
pkg: fix Tailscale URLs (#93)
1 parent dc8b474 commit b7bb2bb

File tree

1 file changed

+18
-18
lines changed

1 file changed

+18
-18
lines changed

.circleci/config.yml

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -148,33 +148,33 @@ jobs:
148148
- ts/connect
149149
- run: |
150150
# Upload the .deb files - one line per arch type
151-
curl -X POST -F file=@./dist/hubci-arc-${CIRCLE_TAG}-amd64.deb "https://ft-mobile-1.horse-dragon.ts.net/api/files/arc-${CIRCLE_TAG}"
152-
curl -X POST -F file=@./dist/hubci-arc-${CIRCLE_TAG}-arm64.deb "https://ft-mobile-1.horse-dragon.ts.net/api/files/arc-${CIRCLE_TAG}"
153-
curl -X POST -F file=@./dist/hubci-arc-${CIRCLE_TAG}-armhf.deb "https://ft-mobile-1.horse-dragon.ts.net/api/files/arc-${CIRCLE_TAG}"
151+
curl -X POST -F file=@./dist/hubci-arc-${CIRCLE_TAG}-amd64.deb "http://ft-mobile-1.horse-dragon.ts.net:1993/api/files/arc-${CIRCLE_TAG}"
152+
curl -X POST -F file=@./dist/hubci-arc-${CIRCLE_TAG}-arm64.deb "http://ft-mobile-1.horse-dragon.ts.net:1993/api/files/arc-${CIRCLE_TAG}"
153+
curl -X POST -F file=@./dist/hubci-arc-${CIRCLE_TAG}-armhf.deb "http://ft-mobile-1.horse-dragon.ts.net:1993/api/files/arc-${CIRCLE_TAG}"
154154
155155
# Each repo/snapshot below should include the param to not delete the uploaded files `?noRemove=1` except for the last one
156156
157157
# Release packages for Ubuntu 20.04 "Focal" - remove around April 2025
158-
curl -X POST "https://ft-mobile-1.horse-dragon.ts.net/api/repos/ftech-ubuntu-focal/file/arc-${CIRCLE_TAG}?noRemove=1"
159-
curl -X POST -H 'Content-Type: application/json' --data '{"Name": "ftech-ubuntu-focal--arc-'$CIRCLE_TAG'"}' "https://ft-mobile-1.horse-dragon.ts.net/api/repos/ftech-ubuntu-focal/snapshots"
160-
curl -X PUT -H 'Content-Type: application/json' --data '{"Snapshots": [{"Component": "main", "Name": "ftech-ubuntu-focal--arc-'$CIRCLE_TAG'"}]}' "https://ft-mobile-1.horse-dragon.ts.net/api/publish/filesystem:ftech:ubuntu/focal"
158+
curl -X POST "http://ft-mobile-1.horse-dragon.ts.net:1993/api/repos/ftech-ubuntu-focal/file/arc-${CIRCLE_TAG}?noRemove=1"
159+
curl -X POST -H 'Content-Type: application/json' --data '{"Name": "ftech-ubuntu-focal--arc-'$CIRCLE_TAG'"}' "http://ft-mobile-1.horse-dragon.ts.net:1993/api/repos/ftech-ubuntu-focal/snapshots"
160+
curl -X PUT -H 'Content-Type: application/json' --data '{"Snapshots": [{"Component": "main", "Name": "ftech-ubuntu-focal--arc-'$CIRCLE_TAG'"}]}' "http://ft-mobile-1.horse-dragon.ts.net:1993/api/publish/filesystem:ftech:ubuntu/focal"
161161
162162
# Release packages for Ubuntu 22.04 "Jammy" - remove around April 2027
163-
curl -X POST "https://ft-mobile-1.horse-dragon.ts.net/api/repos/ftech-ubuntu-jammy/file/arc-${CIRCLE_TAG}?noRemove=1"
164-
curl -X POST -H 'Content-Type: application/json' --data '{"Name": "ftech-ubuntu-jammy--arc-'$CIRCLE_TAG'"}' "https://ft-mobile-1.horse-dragon.ts.net/api/repos/ftech-ubuntu-jammy/snapshots"
165-
curl -X PUT -H 'Content-Type: application/json' --data '{"Snapshots": [{"Component": "main", "Name": "ftech-ubuntu-jammy--arc-'$CIRCLE_TAG'"}]}' "https://ft-mobile-1.horse-dragon.ts.net/api/publish/filesystem:ftech:ubuntu/jammy"
163+
curl -X POST "http://ft-mobile-1.horse-dragon.ts.net:1993/api/repos/ftech-ubuntu-jammy/file/arc-${CIRCLE_TAG}?noRemove=1"
164+
curl -X POST -H 'Content-Type: application/json' --data '{"Name": "ftech-ubuntu-jammy--arc-'$CIRCLE_TAG'"}' "http://ft-mobile-1.horse-dragon.ts.net:1993/api/repos/ftech-ubuntu-jammy/snapshots"
165+
curl -X PUT -H 'Content-Type: application/json' --data '{"Snapshots": [{"Component": "main", "Name": "ftech-ubuntu-jammy--arc-'$CIRCLE_TAG'"}]}' "http://ft-mobile-1.horse-dragon.ts.net:1993/api/publish/filesystem:ftech:ubuntu/jammy"
166166
167167
# Release packages for Debian 12 "Bookworm" (and Raspberry Pi OS) - remove around June 2027
168-
curl -X POST "https://ft-mobile-1.horse-dragon.ts.net/api/repos/ftech-debian-bookworm/file/arc-${CIRCLE_TAG}?noRemove=1"
169-
curl -X POST -H 'Content-Type: application/json' --data '{"Name": "ftech-debian-bookworm--arc-'$CIRCLE_TAG'"}' "https://ft-mobile-1.horse-dragon.ts.net/api/repos/ftech-debian-bookworm/snapshots"
170-
curl -X PUT -H 'Content-Type: application/json' --data '{"Snapshots": [{"Component": "main", "Name": "ftech-debian-bookworm--arc-'$CIRCLE_TAG'"}]}' "https://ft-mobile-1.horse-dragon.ts.net/api/publish/filesystem:ftech:debian/bookworm"
168+
curl -X POST "http://ft-mobile-1.horse-dragon.ts.net:1993/api/repos/ftech-debian-bookworm/file/arc-${CIRCLE_TAG}?noRemove=1"
169+
curl -X POST -H 'Content-Type: application/json' --data '{"Name": "ftech-debian-bookworm--arc-'$CIRCLE_TAG'"}' "http://ft-mobile-1.horse-dragon.ts.net:1993/api/repos/ftech-debian-bookworm/snapshots"
170+
curl -X PUT -H 'Content-Type: application/json' --data '{"Snapshots": [{"Component": "main", "Name": "ftech-debian-bookworm--arc-'$CIRCLE_TAG'"}]}' "http://ft-mobile-1.horse-dragon.ts.net:1993/api/publish/filesystem:ftech:debian/bookworm"
171171
172172
# Release packages for Ubuntu 24.04 "Noble" - remove around April 2029
173-
curl -X POST "https://ft-mobile-1.horse-dragon.ts.net/api/repos/ftech-ubuntu-noble/file/arc-${CIRCLE_TAG}?noRemove=1"
174-
curl -X POST -H 'Content-Type: application/json' --data '{"Name": "ftech-ubuntu-noble--arc-'$CIRCLE_TAG'"}' "https://ft-mobile-1.horse-dragon.ts.net/api/repos/ftech-ubuntu-noble/snapshots"
175-
curl -X PUT -H 'Content-Type: application/json' --data '{"Snapshots": [{"Component": "main", "Name": "ftech-ubuntu-noble--arc-'$CIRCLE_TAG'"}]}' "https://ft-mobile-1.horse-dragon.ts.net/api/publish/filesystem:ftech:ubuntu/noble"
173+
curl -X POST "http://ft-mobile-1.horse-dragon.ts.net:1993/api/repos/ftech-ubuntu-noble/file/arc-${CIRCLE_TAG}?noRemove=1"
174+
curl -X POST -H 'Content-Type: application/json' --data '{"Name": "ftech-ubuntu-noble--arc-'$CIRCLE_TAG'"}' "http://ft-mobile-1.horse-dragon.ts.net:1993/api/repos/ftech-ubuntu-noble/snapshots"
175+
curl -X PUT -H 'Content-Type: application/json' --data '{"Snapshots": [{"Component": "main", "Name": "ftech-ubuntu-noble--arc-'$CIRCLE_TAG'"}]}' "http://ft-mobile-1.horse-dragon.ts.net:1993/api/publish/filesystem:ftech:ubuntu/noble"
176176
177177
# Release packages for Ubuntu "Oracular"
178-
curl -X POST "https://ft-mobile-1.horse-dragon.ts.net/api/repos/ftech-ubuntu-oracular/file/arc-${CIRCLE_TAG}"
179-
curl -X POST -H 'Content-Type: application/json' --data '{"Name": "ftech-ubuntu-oracular--arc-'$CIRCLE_TAG'"}' "https://ft-mobile-1.horse-dragon.ts.net/api/repos/ftech-ubuntu-oracular/snapshots"
180-
curl -X PUT -H 'Content-Type: application/json' --data '{"Snapshots": [{"Component": "main", "Name": "ftech-ubuntu-oracular--arc-'$CIRCLE_TAG'"}]}' "https://ft-mobile-1.horse-dragon.ts.net/api/publish/filesystem:ftech:ubuntu/oracular"
178+
curl -X POST "http://ft-mobile-1.horse-dragon.ts.net:1993/api/repos/ftech-ubuntu-oracular/file/arc-${CIRCLE_TAG}"
179+
curl -X POST -H 'Content-Type: application/json' --data '{"Name": "ftech-ubuntu-oracular--arc-'$CIRCLE_TAG'"}' "http://ft-mobile-1.horse-dragon.ts.net:1993/api/repos/ftech-ubuntu-oracular/snapshots"
180+
curl -X PUT -H 'Content-Type: application/json' --data '{"Snapshots": [{"Component": "main", "Name": "ftech-ubuntu-oracular--arc-'$CIRCLE_TAG'"}]}' "http://ft-mobile-1.horse-dragon.ts.net:1993/api/publish/filesystem:ftech:ubuntu/oracular"

0 commit comments

Comments
 (0)