aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMax Isom <[email protected]>2024-08-18 16:14:31 -0700
committerMax Isom <[email protected]>2024-08-18 16:14:46 -0700
commit52df7d42f1e9f46a669ca918ff7dec699cedf087 (patch)
treeb7970115415c78bccb63adca6c8edd91f1e46de9
parent4c2f65ff2d8a49fb18dc7d5ff40e71534a1a8817 (diff)
downloadmuse-52df7d42f1e9f46a669ca918ff7dec699cedf087.tar.xz
muse-52df7d42f1e9f46a669ca918ff7dec699cedf087.zip
Update readme, changelog, release workflow
-rw-r--r--.github/workflows/publish.yml9
-rw-r--r--CHANGELOG.md6
-rw-r--r--README.md2
3 files changed, 13 insertions, 4 deletions
diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml
index 7e7a4f6..0a7b5c3 100644
--- a/.github/workflows/publish.yml
+++ b/.github/workflows/publish.yml
@@ -5,6 +5,9 @@ on:
tags:
- 'v*'
+env:
+ REGISTRY_IMAGE: ghcr.io/museofficial/muse
+
jobs:
publish:
strategy:
@@ -53,7 +56,7 @@ jobs:
push: true
tags: |
codetheweb/muse:${{ github.sha }}-${{ matrix.tagged-platform }}
- ghcr.io/museofficial/muse:${{ github.sha }}-${{ matrix.tagged-platform }}
+ ${{ env.REGISTRY_IMAGE }}:${{ github.sha }}-${{ matrix.tagged-platform }}
platforms: ${{ matrix.build-arch }}
build-args: |
COMMIT_HASH=${{ github.sha }}
@@ -92,13 +95,13 @@ jobs:
id: get-tags-ghcr
uses: Surgo/docker-smart-tag-action@v1
with:
- docker_image: codetheweb/muse
+ docker_image: ${{ env.REGISTRY_IMAGE }}
- name: Combine tags (Docker Hub)
run: docker buildx imagetools create $(echo '${{ steps.get-tags-dockerhub.outputs.tag }}' | tr "," "\0" | xargs -0 printf -- '-t %s ') 'codetheweb/muse:${{ github.sha }}-arm64' 'codetheweb/muse:${{ github.sha }}-amd64'
- name: Combine tags (GitHub Container Registry)
- run: docker buildx imagetools create $(echo '${{ steps.get-tags-ghcr.outputs.tag }}' | tr "," "\0" | xargs -0 printf -- '-t %s ') 'ghcr.io/museofficial/muse:${{ github.sha }}-arm64' 'ghcr.io/museofficial/muse:${{ github.sha }}-amd64'
+ run: docker buildx imagetools create $(echo '${{ steps.get-tags-ghcr.outputs.tag }}' | tr "," "\0" | xargs -0 printf -- '-t %s ') '${{ env.REGISTRY_IMAGE }}:${{ github.sha }}-arm64' '${{ env.REGISTRY_IMAGE }}:${{ github.sha }}-amd64'
- name: Update Docker Hub description
uses: peter-evans/[email protected]
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 783217a..a4fc8ac 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -6,6 +6,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
+### Changed
+
+- Muse has new maintainers! I ([@codetheweb](https://github.com/codetheweb)) am stepping aside as I haven't used Muse myself for a few years and haven't been able to spend as much time on Muse as I'd like. See [this issue](https://github.com/museofficial/muse/issues/1063) for details. Welcome @museofficial/maintainers!
+- This repository has been moved to museofficial/muse.
+- Docker images are now published to `ghcr.io/museofficial/muse`. **Please update your image source if you use Docker**.
+
## [2.9.1] - 2024-08-04
### Fixed
diff --git a/README.md b/README.md
index ced7722..7fec19f 100644
--- a/README.md
+++ b/README.md
@@ -3,7 +3,7 @@
</p>
> [!WARNING]
-> [@codetheweb](https://github.com/codetheweb) (me) is no longer the primary maintainer of Muse. **If you use the Docker image, update your image source to `ghcr.io/museofficial/muse`.** We are currently publishing new releases to both `ghcr.io/museofficial/muse` and `codetheweb/muse`, but this may change in the future.
+> I ([@codetheweb](https://github.com/codetheweb)) am no longer the primary maintainer of Muse. **If you use the Docker image, update your image source to `ghcr.io/museofficial/muse`.** We are currently publishing new releases to both `ghcr.io/museofficial/muse` and `codetheweb/muse`, but this may change in the future.
> Thank you to all the people who stepped up to help maintain Muse!
------