-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: create manifest list in release action (#3168)
* ci: create manifest list in release action * ci: generate-release depends on push-manifest
- Loading branch information
Showing
1 changed file
with
31 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -266,7 +266,7 @@ jobs: | |
push: false | ||
platforms: ${{ matrix.platform.arch }} | ||
file: packages/${{ matrix.package }}/Dockerfile.prod | ||
tags: ghcr.io/${{ github.repository_owner }}/rafiki-${{ matrix.package }}:${{ needs.version-generator.outputs.version }} | ||
tags: ghcr.io/${{ github.repository_owner }}/rafiki-${{ matrix.package }}-${{ matrix.platform.name }}:${{ needs.version-generator.outputs.version }} | ||
outputs: type=docker,dest=/tmp/${{ github.sha }}-${{ matrix.package }}-${{ matrix.platform.name }}-${{ needs.version-generator.outputs.version }}.tar | ||
- name: Save docker image to cache | ||
uses: actions/cache@v4 | ||
|
@@ -382,11 +382,38 @@ jobs: | |
run: docker images | ||
- name: Push to registry | ||
run: | | ||
docker push ghcr.io/${{ github.repository_owner }}/rafiki-${{ matrix.package }}:${{ needs.version-generator.outputs.version }} | ||
docker push ghcr.io/${{ github.repository_owner }}/rafiki-${{ matrix.package }}-${{ matrix.platform.name }}:${{ needs.version-generator.outputs.version }} | ||
push-manifest: | ||
name: Push multi-arch manifest list | ||
needs: [version-generator, push] | ||
runs-on: ubuntu-latest | ||
if: needs.version-generator.outputs.dockerPush == 'true' | ||
strategy: | ||
matrix: | ||
package: | ||
- auth | ||
- backend | ||
- frontend | ||
steps: | ||
- name: Login to GHCR | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.repository_owner }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Create manifest list | ||
run: | | ||
docker manifest create ghcr.io/${{ github.repository_owner }}/rafiki-${{ matrix.package }}:${{ needs.version-generator.outputs.version }} \ | ||
--amend ghcr.io/${{ github.repository_owner }}/rafiki-${{ matrix.package }}-amd64:${{ needs.version-generator.outputs.version }} \ | ||
--amend ghcr.io/${{ github.repository_owner }}/rafiki-${{ matrix.package }}-arm64:${{ needs.version-generator.outputs.version }} | ||
- name: Push manifest list | ||
run: | | ||
docker manifest push ghcr.io/${{ github.repository_owner }}/rafiki-${{ matrix.package }}:${{ needs.version-generator.outputs.version }} | ||
generate-release: | ||
runs-on: ubuntu-latest | ||
needs: [push, version-generator] | ||
needs: [push-manifest, version-generator] | ||
if: needs.version-generator.outputs.generateRelease == 'true' | ||
steps: | ||
- name: Checkout Code | ||
|
@@ -397,6 +424,7 @@ jobs: | |
with: | ||
token: ${{ github.token }} | ||
tag: ${{ needs.version-generator.outputs.version }} | ||
includeRefIssues: false | ||
- name: Create Release | ||
uses: ncipollo/[email protected] | ||
with: | ||
|