Update Go env version to 1.25 (#435) #40
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: | |
| branches: | |
| - master | |
| paths: | |
| - '**/envconfig.json**' | |
| workflow_dispatch: | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| outputs: | |
| versions_to_be_released: ${{ steps.release_env.outputs.versions_to_be_released }} | |
| release_needed: ${{ steps.release_env.outputs.release_needed }} | |
| steps: | |
| - name: Checkout the current repo | |
| uses: actions/checkout@v2 | |
| - uses: dorny/paths-filter@v2 | |
| id: filter | |
| with: | |
| filters: .github/workflows/filters/version_filter.yaml | |
| - name: Filter Environments to be released | |
| id: release_env | |
| run: | | |
| python3 hack/release_check.py ${{ steps.filter.outputs.changes }} | |
| docker-buildx-push: | |
| if: ${{ needs.check.outputs.release_needed == 'True' }} | |
| needs: check | |
| strategy: | |
| fail-fast: false | |
| matrix: ${{ fromJson(needs.check.outputs.versions_to_be_released) }} | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout sources | |
| uses: actions/checkout@v2 | |
| - name: Set up QEMU | |
| uses: docker/setup-qemu-action@v1 | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v1 | |
| with: | |
| version: latest | |
| use: 'true' | |
| buildkitd-flags: --debug | |
| - name: Login to ghcr.io | |
| uses: docker/login-action@343f7c4344506bcbf9b4de18042ae17996df046d # v3.0.0 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Trigger Release | |
| run: | | |
| make verify-builder | |
| cd ${{ matrix.env }} | |
| TAG=${{ matrix.tag }} make ${{ matrix.image }}-img | |
| if [ "${{ matrix.builder}}" != "" ] | |
| then | |
| pushd builder | |
| TAG=${{ matrix.tag }} make ${{ matrix.builder }}-img | |
| popd | |
| fi | |
| TAG=latest make ${{ matrix.image }}-img | |
| if [ "${{ matrix.builder}}" != "" ] | |
| then | |
| pushd builder | |
| TAG=latest make ${{ matrix.builder }}-img | |
| popd | |
| fi |