-
-
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.
Merge branch 'main' of https://github.com/kafbat/kafka-ui into issues…
…/117-reusable-workflow
- Loading branch information
Showing
2 changed files
with
130 additions
and
1 deletion.
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 |
---|---|---|
@@ -0,0 +1,100 @@ | ||
name: "Docker publish" | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
version: | ||
required: true | ||
type: string | ||
generic_tag: | ||
required: true | ||
type: string | ||
|
||
permissions: | ||
packages: write | ||
id-token: write # Required to authenticate with OIDC for AWS | ||
|
||
jobs: | ||
deploy: | ||
continue-on-error: true | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
registry: [ 'docker.io', 'ghcr.io', 'ecr' ] | ||
|
||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Download docker image | ||
uses: actions/download-artifact@v4 | ||
with: | ||
name: image | ||
path: /tmp | ||
|
||
# setup containerd to preserve provenance attestations :https://docs.docker.com/build/attestations/#creating-attestations | ||
- name: Setup docker with containerd | ||
uses: crazy-max/ghaction-setup-docker@v3 | ||
with: | ||
daemon-config: | | ||
{ | ||
"features": { | ||
"containerd-snapshotter": true | ||
} | ||
} | ||
- name: Load docker image into daemon | ||
run: | | ||
docker load --input /tmp/image.tar | ||
- name: Login to docker.io | ||
if: matrix.registry == 'docker.io' | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ matrix.registry }} | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Login to ghcr.io | ||
if: matrix.registry == 'ghcr.io' | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ${{ matrix.registry }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Configure AWS credentials | ||
if: matrix.registry == 'ecr' | ||
uses: aws-actions/configure-aws-credentials@v4 | ||
with: | ||
aws-region: us-east-1 # This region only for public ECR | ||
role-to-assume: ${{ secrets.AWS_ROLE }} | ||
|
||
- name: Login to public ECR | ||
if: matrix.registry == 'ecr' | ||
id: login-ecr-public | ||
uses: aws-actions/amazon-ecr-login@v2 | ||
with: | ||
registry-type: public | ||
|
||
- name: define env vars | ||
run: | | ||
if [ ${{matrix.registry }} == 'docker.io' ]; then | ||
echo "REGISTRY=${{ matrix.registry }}" >> $GITHUB_ENV | ||
echo "REPOSITORY=${{ github.repository }}" >> $GITHUB_ENV | ||
elif [ ${{ matrix.registry }} == 'ghcr.io' ]; then | ||
echo "REGISTRY=${{ matrix.registry }}" >> $GITHUB_ENV | ||
echo "REPOSITORY=${{ github.repository }}" >> $GITHUB_ENV | ||
elif [ ${{ matrix.registry }} == 'ecr' ]; then | ||
echo "REGISTRY=${{ vars.ECR_REGISTRY }}" >> $GITHUB_ENV | ||
echo "REPOSITORY=${{ github.repository }}" >> $GITHUB_ENV | ||
else | ||
echo "REGISTRY=" >> $GITHUB_ENV | ||
echo "REPOSITORY=notworking" >> $GITHUB_ENV | ||
fi | ||
- name: Push images to ${{ matrix.registry }} | ||
run: | | ||
docker tag kafka-ui:temp ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:${{ inputs.generic_tag }} | ||
docker tag kafka-ui:temp ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:${{ inputs.version }} | ||
docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:${{ inputs.generic_tag }} | ||
docker push ${{ env.REGISTRY }}/${{ env.REPOSITORY }}:${{ inputs.version }} |
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