Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: rename the docker image organization name to pundiai #816

Merged
merged 2 commits into from
Nov 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 6 additions & 33 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,17 +32,8 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/functionx/fx-core
functionx/fx-core
tags: |
type=semver,pattern={{version}}

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: functionx
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
images: ghcr.io/pundiai/fx-core
tags: type=semver,pattern={{version}}

- name: Login to Container registry
uses: docker/login-action@v3
Expand Down Expand Up @@ -75,17 +66,8 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/functionx/fxcorevisor-lite
functionx/fxcorevisor-lite
tags: |
type=semver,pattern={{version}}

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: functionx
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
images: ghcr.io/pundiai/fxcorevisor-lite
tags: type=semver,pattern={{version}}

- name: Login to Container registry
uses: docker/login-action@v3
Expand Down Expand Up @@ -119,17 +101,8 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
images: |
ghcr.io/functionx/fxcorevisor
functionx/fxcorevisor
tags: |
type=semver,pattern={{version}}

- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: functionx
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
images: ghcr.io/pundiai/fxcorevisor
tags: type=semver,pattern={{version}}

- name: Login to Container registry
uses: docker/login-action@v3
Expand Down
6 changes: 3 additions & 3 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,19 +107,19 @@ release:
## 🔨 Build from source

```bash
git clone https://github.com/functionx/fx-core.git
git clone https://github.com/PundiAI/fx-core.git
cd fx-core && git checkout {{ .Tag }}
make install
```

## 🐳 Docker Images

```bash
docker pull ghcr.io/functionx/fx-core:{{ .Version }}
docker pull ghcr.io/PundiAI/fx-core:{{ .Version }}
```

```bash
docker pull ghcr.io/functionx/fxcorevisor:{{ .Version }}
docker pull ghcr.io/PundiAI/fxcorevisor:{{ .Version }}
```

## ⚡️ Download binaries
Expand Down
2 changes: 1 addition & 1 deletion contrib/scripts/release-note.sh
Original file line number Diff line number Diff line change
Expand Up @@ -31,5 +31,5 @@ cat <<EOF >./release-note.md
$changelog
**Full Changelog**: https://github.com/FunctionX/fx-core/commits/$version.
**Full Changelog**: https://github.com/PundiAI/fx-core/commits/$version.
EOF
Loading