name: beta release on: push: branches: [ 'main' ] concurrency: group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} cancel-in-progress: true jobs: changelog: strategy: matrix: platform: [ ubuntu-latest ] go-version: [ '1.21' ] name: Beta Release Changelog runs-on: ${{ matrix.platform }} steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 - name: changelog # or changelogithub@0.12 if ensure the stable result id: changelog run: | git tag -l npx changelogithub --output CHANGELOG.md # npx changelogen@latest --output CHANGELOG.md - name: Upload assets uses: softprops/action-gh-release@v2 with: body_path: CHANGELOG.md files: CHANGELOG.md prerelease: true tag_name: beta release: needs: - changelog strategy: matrix: include: - target: '!(*musl*|*windows-arm64*|*android*)' # xgo hash: "md5" - target: 'linux-*-musl*' #musl hash: "md5-linux-musl" - target: 'windows-arm64' #win-arm64 hash: "md5-windows-arm64" - target: 'android-*' #android hash: "md5-android" name: Beta Release runs-on: ubuntu-latest steps: - name: Checkout uses: actions/checkout@v4 with: fetch-depth: 0 - name: Setup Go uses: actions/setup-go@v5 with: go-version: '1.22' - name: Setup web run: bash build.sh dev web - name: Build id: test-action uses: go-cross/cgo-actions@v1 with: targets: ${{ matrix.target }} musl-target-format: $os-$musl-$arch out-dir: build - name: Compress run: | bash build.sh zip ${{ matrix.hash }} - name: Upload assets uses: softprops/action-gh-release@v2 with: files: build/compress/* prerelease: true tag_name: beta