53e3fb858d
* chore: update Go version to 1.25.1 and dependencies - Updated Dockerfile to use Go 1.25.1 for both builder and final images. - Modified README files (Japanese, Chinese Simplified, Chinese Traditional, and English) to reflect the new Go version requirement of 1.25.1. - Updated go.mod to specify Go 1.25 and updated dependencies: - Upgraded hugo from v0.147.6 to v0.149.1 - Upgraded testify from v1.10.0 to v1.11.1 - Upgraded other indirect dependencies to their latest versions. - Updated go.sum to reflect the changes in dependencies. * fix: update golangci-lint to use latest version and install mode
55 lines
1.5 KiB
YAML
55 lines
1.5 KiB
YAML
name: Release
|
|
|
|
on:
|
|
push:
|
|
pull_request:
|
|
branches: [master]
|
|
|
|
jobs:
|
|
release:
|
|
name: Release
|
|
runs-on: ubuntu-latest
|
|
if: startsWith(github.ref, 'refs/tags/v')
|
|
steps:
|
|
- name: Check out code
|
|
uses: actions/checkout@v4
|
|
- name: Setup Go
|
|
uses: actions/setup-go@v5
|
|
with:
|
|
go-version: ^1.25
|
|
|
|
- name: Set GOVERSION
|
|
run: echo "GOVERSION=$(go version | sed -r 's/go version go(.*)\ .*/\1/')" >> $GITHUB_ENV
|
|
- name: Set AirVersion
|
|
run: echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
|
- name: Show version
|
|
run: echo ${{ env.GOVERSION }} ${{ env.VERSION }}
|
|
|
|
- name: Run GoReleaser
|
|
uses: goreleaser/goreleaser-action@v5
|
|
with:
|
|
distribution: goreleaser
|
|
version: latest
|
|
args: release --clean
|
|
env:
|
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Push to DockerHub
|
|
id: docker_build
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
push: true
|
|
platforms: linux/amd64,linux/arm64
|
|
tags: cosmtrek/air:${{ env.VERSION }}
|
|
- name: Show docker image digest
|
|
run: echo ${{ steps.docker_build.outputs.digest }}
|