chore: bump google.golang.org/grpc from 1.77.0 to 1.79.2 (#32) #3
Workflow file for this run
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: release | |
| on: | |
| push: | |
| tags: | |
| - '*' | |
| jobs: | |
| release: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Unshallow | |
| run: git fetch --prune --unshallow | |
| - name: Highest tag | |
| id: highestTag | |
| run: | | |
| git fetch --depth=1 origin +refs/tags/*:refs/tags/* | |
| echo ::set-output name=highest::$(git tag | grep -E "^v?([0-9]+\.)+[0-9]+$" | sort -r -V | head -n1) | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v4 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v4 | |
| - name: Docker login | |
| run: echo ${{ secrets.DOCKER_PASSWORD }} | docker login -u ${{ secrets.DOCKER_USER }} --password-stdin | |
| - name: Get tag | |
| uses: olegtarasov/get-tag@v2.1 | |
| id: tagName | |
| - name: Make release | |
| run: make release | |
| env: | |
| DOCKER_CLI_EXPERIMENTAL: enabled | |
| TAG: ${{ steps.tagName.outputs.tag }} | |
| IMAGE_TAG: ${{ steps.tagName.outputs.tag }} | |
| - name: Push latest | |
| if: steps.tagName.outputs.tag == steps.highestTag.outputs.highest | |
| run: make release | |
| env: | |
| DOCKER_CLI_EXPERIMENTAL: enabled | |
| TAG: ${{ steps.tagName.outputs.tag }} | |
| IMAGE_TAG: latest |