Skip to content

Commit a348c58

Browse files
committed
begin project re-homing
1 parent d1a19b3 commit a348c58

8 files changed

Lines changed: 16 additions & 16 deletions

File tree

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -128,8 +128,8 @@ jobs:
128128
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags')
129129
steps:
130130
- uses: actions/checkout@v4
131-
- name: Set up QEMU
132-
uses: docker/setup-qemu-action@v3
131+
# - name: Set up QEMU
132+
# uses: docker/setup-qemu-action@v3
133133
- name: Set up Docker Buildx
134134
uses: docker/setup-buildx-action@v3
135135
with:
@@ -138,7 +138,7 @@ jobs:
138138
id: meta
139139
uses: docker/metadata-action@v5
140140
with:
141-
images: ghcr.io/alephdata/followthemoney
141+
images: ghcr.io/opensanctions/followthemoney
142142
tags: |
143143
type=ref,event=branch
144144
type=semver,pattern={{version}}
@@ -155,14 +155,14 @@ jobs:
155155
uses: docker/build-push-action@v6
156156
with:
157157
context: .
158-
platforms: linux/amd64,linux/arm64
158+
platforms: linux/amd64
159159
cache-from: type=gha
160160
- name: Build and push docker image
161161
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags')
162162
uses: docker/build-push-action@v6
163163
with:
164164
context: .
165-
platforms: linux/amd64,linux/arm64
165+
platforms: linux/amd64
166166
push: true
167167
tags: ${{ steps.meta.outputs.tags }}
168168
labels: ${{ steps.meta.outputs.labels }}

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ FROM ubuntu:latest
22

33
LABEL org.opencontainers.image.title="FollowTheMoney"
44
LABEL org.opencontainers.image.licenses=MIT
5-
LABEL org.opencontainers.image.source=https://github.com/alephdata/followthemoney
5+
LABEL org.opencontainers.image.source=https://github.com/opensanctions/followthemoney
66

77
ENV DEBIAN_FRONTEND=noninteractive
88

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ release: clean dist
1717
twine upload dist/*
1818

1919
docker:
20-
docker build -t alephdata/followthemoney .
20+
docker build -t opensanctions/followthemoney .
2121

2222
build: default-model ontology
2323

docs/src/options.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,12 +67,12 @@
6767
"title": "Reference",
6868
"items": [
6969
{
70-
"link": "https://alephdata.github.io/followthemoney/reference/python",
70+
"link": "https://opensanctions.github.io/followthemoney/reference/python",
7171
"title": "Python Library",
7272
"external": true
7373
}
7474
]
7575
}
7676
]
7777
}
78-
}
78+
}

java/pom.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@
2020
</licenses>
2121

2222
<scm>
23-
<connection>scm:git:git://github.com/alephdata/followthemoney.git</connection>
24-
<developerConnection>scm:git:ssh://github.com:alephdata/followthemoney.git</developerConnection>
25-
<url>http://github.com/alephdata/followthemoney/tree/main</url>
23+
<connection>scm:git:git://github.com/opensanctions/followthemoney.git</connection>
24+
<developerConnection>scm:git:ssh://github.com:opensanctions/followthemoney.git</developerConnection>
25+
<url>http://github.com/opensanctions/followthemoney/tree/main</url>
2626
</scm>
2727

2828
<developers>

js/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# followthemoney.js
22

3-
Implementation of [Follow the money](https://github.com/alephdata/followthemoney)
3+
Implementation of [Follow the money](https://github.com/opensanctions/followthemoney)
44
data model in TypeScript/JavaScript.

js/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "@alephdata/followthemoney",
2+
"name": "@opensanctions/followthemoney",
33
"version": "3.8.4",
44
"description": "JavaScript version of the followthemoney data model",
55
"keywords": [],
@@ -13,7 +13,7 @@
1313
"author": "OCCRP Data <data@occrp.org>",
1414
"repository": {
1515
"type": "git",
16-
"url": "https://github.com/alephdata/followthemoney"
16+
"url": "https://github.com/opensanctions/followthemoney"
1717
},
1818
"license": "MIT",
1919
"engines": {

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ dependencies = [
4545

4646
[project.urls]
4747
Documentation = "https://followthemoney.tech/"
48-
Repository = "https://github.com/alephdata/followthemoney.git"
48+
Repository = "https://github.com/opensanctions/followthemoney.git"
4949
Issues = "https://github.com/alephdata/followthemoney/issues"
5050

5151
[project.optional-dependencies]

0 commit comments

Comments
 (0)