From 52df7d42f1e9f46a669ca918ff7dec699cedf087 Mon Sep 17 00:00:00 2001 From: Max Isom Date: Sun, 18 Aug 2024 16:14:31 -0700 Subject: [PATCH] Update readme, changelog, release workflow --- .github/workflows/publish.yml | 9 ++++++--- CHANGELOG.md | 6 ++++++ README.md | 2 +- 3 files changed, 13 insertions(+), 4 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 7e7a4f6b..0a7b5c3b 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/dockerhub-description@v2.4.3 diff --git a/CHANGELOG.md b/CHANGELOG.md index 783217a9..a4fc8ac0 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 ced77227..7fec19f5 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@

> [!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! ------