| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146 |
- name: Release
- on:
- release:
- types: [published]
- push:
- branches:
- - main
- pull_request:
- paths:
- - '.github/workflows/release.yml'
- concurrency:
- group: ${{ github.workflow }}-${{ github.ref }}
- cancel-in-progress: true
- env:
- GOPROXY: "https://proxy.golang.org"
- permissions:
- contents: write
- jobs:
- build:
- name: Build ${{ matrix.goos }}/${{ matrix.goarch }}${{ matrix.suffix }}
- runs-on: ubuntu-latest
- strategy:
- fail-fast: false
- matrix:
- include:
- - {goos: linux, goarch: amd64}
- - {goos: linux, goarch: arm64}
- - {goos: linux, goarch: "386"}
- - {goos: darwin, goarch: amd64}
- - {goos: darwin, goarch: arm64}
- - {goos: windows, goarch: amd64}
- - {goos: windows, goarch: arm64}
- - {goos: windows, goarch: "386"}
- - {goos: windows, goarch: amd64, suffix: "_mws", tags: minwinsvc}
- - {goos: windows, goarch: arm64, suffix: "_mws", tags: minwinsvc}
- - {goos: windows, goarch: "386", suffix: "_mws", tags: minwinsvc}
- steps:
- - name: Checkout code
- uses: actions/checkout@1af3b93b6815bc44a9784bd300feb67ff0d1eeb3 # v6.0.0
- - name: Setup Go
- uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0
- with:
- go-version: 1.25.x
- - name: Determine version
- id: version
- run: |
- if [ "${{ github.event_name }}" = "release" ]; then
- echo "version=${{ github.event.release.tag_name }}" | sed 's/version=v/version=/' >> "$GITHUB_OUTPUT"
- echo "release_tag=${{ github.event.release.tag_name }}" >> "$GITHUB_OUTPUT"
- elif [ "${{ github.event_name }}" = "push" ] && [ "${{ github.ref }}" = "refs/heads/main" ]; then
- echo "version=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT"
- echo "release_tag=latest-commit-build" >> "$GITHUB_OUTPUT"
- else
- echo "version=$(git rev-parse --short HEAD)" >> "$GITHUB_OUTPUT"
- echo "release_tag=release-archive-testing" >> "$GITHUB_OUTPUT"
- fi
- - name: Build binary
- env:
- GOOS: ${{ matrix.goos }}
- GOARCH: ${{ matrix.goarch }}
- CGO_ENABLED: "0"
- run: |
- BINARY_NAME="gogs"
- if [ "${{ matrix.goos }}" = "windows" ]; then
- BINARY_NAME="gogs.exe"
- fi
- TAGS_FLAG=""
- if [ -n "${{ matrix.tags }}" ]; then
- TAGS_FLAG="-tags ${{ matrix.tags }}"
- fi
- go build -v \
- -ldflags "
- -X \"gogs.io/gogs/internal/conf.BuildTime=$(date -u '+%Y-%m-%d %I:%M:%S %Z')\"
- -X \"gogs.io/gogs/internal/conf.BuildCommit=$(git rev-parse HEAD)\"
- " \
- $TAGS_FLAG \
- -trimpath -o "$BINARY_NAME"
- - name: Prepare archive contents
- run: |
- mkdir -p dist/gogs
- BINARY_NAME="gogs"
- if [ "${{ matrix.goos }}" = "windows" ]; then
- BINARY_NAME="gogs.exe"
- fi
- cp "$BINARY_NAME" dist/gogs/
- cp LICENSE README.md README_ZH.md dist/gogs/
- cp -r scripts dist/gogs/
- - name: Create archives
- working-directory: dist
- run: |
- VERSION="${{ steps.version.outputs.version }}"
- ARCHIVE_BASE="gogs_${VERSION}_${{ matrix.goos }}_${{ matrix.goarch }}${{ matrix.suffix }}"
- zip -r "${ARCHIVE_BASE}.zip" gogs
- if [ "${{ matrix.goos }}" = "linux" ]; then
- tar -czvf "${ARCHIVE_BASE}.tar.gz" gogs
- fi
- - name: Upload to release
- env:
- GH_TOKEN: ${{ github.token }}
- run: |
- RELEASE_TAG="${{ steps.version.outputs.release_tag }}"
- if [ "${{ github.event_name }}" != "release" ]; then
- git tag -f "$RELEASE_TAG"
- git push origin "$RELEASE_TAG" --force || true
-
- RELEASE_TITLE="Release Archive Testing"
- RELEASE_NOTES="Automated testing release for workflow development."
- if [ "$RELEASE_TAG" = "latest-commit-build" ]; then
- RELEASE_TITLE="Latest Commit Build"
- RELEASE_NOTES="Automated build from the latest commit on main branch. This release is updated automatically with every push to main."
- fi
-
- gh release view "$RELEASE_TAG" || gh release create "$RELEASE_TAG" --title "$RELEASE_TITLE" --notes "$RELEASE_NOTES" --prerelease
- fi
- PATTERN="_${{ matrix.goos }}_${{ matrix.goarch }}${{ matrix.suffix }}\."
- gh release view "$RELEASE_TAG" --json assets --jq ".assets[].name" | grep "$PATTERN" | while read -r asset; do
- gh release delete-asset "$RELEASE_TAG" "$asset" --yes || true
- done
- gh release upload "$RELEASE_TAG" dist/gogs_*.zip --clobber
- if [ "${{ matrix.goos }}" = "linux" ]; then
- gh release upload "$RELEASE_TAG" dist/gogs_*.tar.gz --clobber
- fi
- notify-failure:
- name: Notify on failure
- runs-on: ubuntu-latest
- needs: [build]
- if: ${{ failure() && github.event_name == 'push' && github.ref == 'refs/heads/main' }}
- steps:
- - name: Send email on failure
- uses: unknwon/send-email-on-failure@89339a1bc93f4ad1d30f3b7e4911fcba985c9adb # v1
- with:
- smtp_username: ${{ secrets.SMTP_USERNAME }}
- smtp_password: ${{ secrets.SMTP_PASSWORD }}
|