diff --git a/.github/workflows/push_docker_images.yml b/.github/workflows/push_docker_images.yml index 51362ea49..5db1da895 100644 --- a/.github/workflows/push_docker_images.yml +++ b/.github/workflows/push_docker_images.yml @@ -1,11 +1,11 @@ -# This workflow pushes new composable docker images on every new tag. +# This workflow pushes new centauri docker images on every new tag. # # On every new `vX.Y.Z` tag the following images are pushed: # -# notional-labs/composable:X.Y.Z # is pushed -# notional-labs/composable:X.Y # is updated to X.Y.Z -# notional-labs/composable:X # is updated to X.Y.Z -# notional-labs/composable:latest # is updated to X.Y.Z +# ghcr.io/composablefi/centauri:X.Y.Z # is pushed +# ghcr.io/composablefi/centauri:X.Y # is updated to X.Y.Z +# ghcr.io/composablefi/centauri:X # is updated to X.Y.Z +# ghcr.io/composablefi/centauri:latest # is updated to X.Y.Z # # All the images above have support for linux/amd64 and linux/arm64. # @@ -29,14 +29,11 @@ jobs: feeapp-images: runs-on: ubuntu-latest steps: - - - name: Check out the repo + - name: Check out the repo uses: actions/checkout@v3 - - - name: Set up QEMU + - name: Set up QEMU uses: docker/setup-qemu-action@v2 - - - name: Set up Docker Buildx + - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Login to GitHub Container Registry uses: docker/login-action@v3 @@ -44,8 +41,7 @@ jobs: registry: ghcr.io username: ${{ github.repository_owner }} password: ${{ secrets.GITHUB_TOKEN }} - - - name: Parse tag + - name: Parse tag id: tag run: | VERSION=$(echo ${{ github.ref_name }} | sed "s/v//") @@ -56,8 +52,7 @@ jobs: echo "MAJOR_VERSION=$MAJOR_VERSION" >> $GITHUB_ENV echo "MINOR_VERSION=$MINOR_VERSION" >> $GITHUB_ENV echo "PATCH_VERSION=$PATCH_VERSION" >> $GITHUB_ENV - - - name: Build and push + - name: Build and push id: build_push_image uses: docker/build-push-action@v3 with: @@ -66,6 +61,6 @@ jobs: push: true platforms: linux/amd64,linux/arm64 tags: | - ghcr.io/notional-labs/composable:${{ env.MAJOR_VERSION }} - ghcr.io/notional-labs/composable:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }} - ghcr.io/notional-labs/composable:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}.${{ env.PATCH_VERSION }} + ghcr.io/composablefi/centauri:${{ env.MAJOR_VERSION }} + ghcr.io/composablefi/centauri:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }} + ghcr.io/composablefi/centauri:${{ env.MAJOR_VERSION }}.${{ env.MINOR_VERSION }}.${{ env.PATCH_VERSION }} \ No newline at end of file