Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Fix docker image name #5501

Merged
merged 3 commits into from
May 12, 2022
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
10 changes: 5 additions & 5 deletions scripts/ci/changelog/templates/docker_image.md.tera
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@

## Docker images
## Docker image

The docker image for this release can be found in [Docker hub](https://hub.docker.com/r/parity/polkadot-collator/tags?page=1&ordering=last_updated)
(It will be available a few minutes after this release was published).
The docker image for this release can be found at [Docker hub](https://hub.docker.com/r/parity/polkadot/tags?page=1&ordering=last_updated)
(It will be available a few minutes after the release has been published).

You may also pull it with:
You may pull it using:

```
docker pull parity/polkadot-collator:latest
docker pull parity/polkadot:latest
```
2 changes: 1 addition & 1 deletion scripts/ci/changelog/templates/template.md.tera
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
{% if env.PRE_RELEASE == "true" -%}
This pre-release contains the changes from `{{ env.REF1 | replace(from="refs/tags/", to="") }}` to `{{ env.REF2 | replace(from="refs/tags/", to="") }}`.
{%- else -%}
This release contains the changes from `{{ env.REF1 }}` to `{{ env.REF2 }}`.
This release contains the changes from `{{ env.REF1 | replace(from="refs/tags/", to="") }}` to `{{ env.REF2 | replace(from="refs/tags/", to="") }}`.
{% endif -%}

{%- set changes = polkadot.changes | concat(with=substrate.changes) -%}
Expand Down