Merge pull request #1912 from EmelyanenkoK/codex-rules #221
This file contains hidden or 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
| name: Docker Ubuntu 22.04 image | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - 'master' | |
| env: | |
| REGISTRY: ghcr.io | |
| IMAGE_NAME: ${{ github.repository }} | |
| jobs: | |
| build-arm64: | |
| runs-on: ubuntu-22.04-arm | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: 'recursive' | |
| - name: Set up QEMU | |
| uses: docker/[email protected] | |
| - name: Set up Docker Buildx | |
| uses: docker/[email protected] | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Get next tag | |
| id: tag | |
| run: | | |
| git fetch --all --tags | |
| git tag -l | |
| NEW_TAG=v$(date +'%Y.%m') | |
| FOUND=$(git tag -l | grep $NEW_TAG | wc -l) | |
| if [ $FOUND -eq 0 ]; then | |
| echo "TAG=$NEW_TAG" >> $GITHUB_OUTPUT | |
| else | |
| echo "TAG=$NEW_TAG-$FOUND" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Build and push | |
| uses: docker/build-push-action@v6 | |
| with: | |
| platforms: linux/arm64 | |
| push: true | |
| context: ./ | |
| tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.tag.outputs.TAG }}-arm64 | |
| build-amd64: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| with: | |
| submodules: 'recursive' | |
| - name: Set up QEMU | |
| uses: docker/[email protected] | |
| - name: Set up Docker Buildx | |
| uses: docker/[email protected] | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Get next tag | |
| id: tag | |
| run: | | |
| git fetch --all --tags | |
| git tag -l | |
| NEW_TAG=v$(date +'%Y.%m') | |
| FOUND=$(git tag -l | grep $NEW_TAG | wc -l) | |
| if [ $FOUND -eq 0 ]; then | |
| echo "TAG=$NEW_TAG" >> $GITHUB_OUTPUT | |
| else | |
| echo "TAG=$NEW_TAG-$FOUND" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Build and push | |
| uses: docker/build-push-action@v6 | |
| with: | |
| platforms: linux/amd64 | |
| push: true | |
| context: ./ | |
| tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.tag.outputs.TAG }}-amd64 | |
| merge: | |
| runs-on: ubuntu-22.04 | |
| needs: | |
| - build-amd64 | |
| - build-arm64 | |
| steps: | |
| - name: Check out repository | |
| uses: actions/checkout@v3 | |
| - name: Get next tag | |
| id: tag | |
| run: | | |
| git fetch --all --tags | |
| git tag -l | |
| NEW_TAG=v$(date +'%Y.%m') | |
| FOUND=$(git tag -l | grep $NEW_TAG | wc -l) | |
| if [ $FOUND -eq 0 ]; then | |
| echo "TAG=$NEW_TAG" >> $GITHUB_OUTPUT | |
| else | |
| echo "TAG=$NEW_TAG-$FOUND" >> $GITHUB_OUTPUT | |
| fi | |
| - name: Login to GitHub Container Registry | |
| uses: docker/login-action@v3 | |
| with: | |
| registry: ${{ env.REGISTRY }} | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Set up Docker Buildx | |
| uses: docker/[email protected] | |
| - name: Create manifest list and push | |
| run: | | |
| docker buildx imagetools create \ | |
| --tag ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest \ | |
| ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.tag.outputs.TAG }}-arm64 \ | |
| ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.tag.outputs.TAG }}-amd64 | |
| - name: Inspect image | |
| run: | | |
| docker buildx imagetools inspect ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest |