Merge branch 'main' into dev-media #6
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: Beta Media Release builds | |
| on: | |
| push: | |
| branches: ["dev-media"] | |
| workflow_dispatch: | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: | |
| contents: write | |
| jobs: | |
| changelog: | |
| name: Beta Media Release Changelog | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Create or update ref | |
| id: create-or-update-ref | |
| uses: ovsds/create-or-update-ref-action@v1 | |
| with: | |
| ref: tags/beta-media | |
| sha: ${{ github.sha }} | |
| - name: Delete beta-media tag | |
| run: git tag -d beta-media | |
| continue-on-error: true | |
| - name: changelog | |
| id: changelog | |
| run: | | |
| git tag -l | |
| npx changelogithub --output CHANGELOG.md | |
| - name: Upload assets to beta-media release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| body_path: CHANGELOG.md | |
| files: CHANGELOG.md | |
| prerelease: true | |
| tag_name: beta-media | |
| - name: Upload assets to github artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: beta-media changelog | |
| path: ${{ github.workspace }}/CHANGELOG.md | |
| compression-level: 0 | |
| if-no-files-found: error | |
| release: | |
| needs: | |
| - changelog | |
| strategy: | |
| matrix: | |
| include: | |
| - target: "!(*musl*|*windows-arm64*|*windows7-*|*android*|*freebsd*)" # xgo and loongarch | |
| hash: "md5" | |
| - target: "linux-!(arm*)-musl*" #musl-not-arm | |
| hash: "md5-linux-musl" | |
| - target: "linux-arm*-musl*" #musl-arm | |
| hash: "md5-linux-musl-arm" | |
| - target: "windows-arm64" #win-arm64 | |
| hash: "md5-windows-arm64" | |
| - target: "windows7-*" #win7 | |
| hash: "md5-windows7" | |
| - target: "android-*" #android | |
| hash: "md5-android" | |
| - target: "freebsd-*" #freebsd | |
| hash: "md5-freebsd" | |
| name: Beta Media 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.25.0" | |
| - name: Setup web | |
| run: | | |
| frontendRepo="${FRONTEND_REPO:-OpenListTeam/OpenList-Frontend}" | |
| release_json=$(curl -fsSL --max-time 10 \ | |
| -H "Authorization: Bearer $GITHUB_TOKEN" \ | |
| -H "Accept: application/vnd.github.v3+json" \ | |
| "https://api.github.com/repos/$frontendRepo/releases/tags/beta-media") | |
| tar_url=$(echo "$release_json" | jq -r '.assets[].browser_download_url' | grep "openlist-frontend-dist" | grep -v "lite" | grep "\.tar\.gz$") | |
| echo "Downloading frontend from: $tar_url" | |
| curl -fsSL "$tar_url" -o dist.tar.gz | |
| rm -rf public/dist && mkdir -p public/dist | |
| tar -zxvf dist.tar.gz -C public/dist | |
| rm -rf dist.tar.gz | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| FRONTEND_REPO: ${{ vars.FRONTEND_REPO }} | |
| - name: Build | |
| uses: OpenListTeam/cgo-actions@v1.2.2 | |
| with: | |
| targets: ${{ matrix.target }} | |
| musl-target-format: $os-$musl-$arch | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| out-dir: build | |
| output: openlist-$target$ext | |
| musl-base-url: "https://github.com/OpenListTeam/musl-compilers/releases/latest/download/" | |
| x-flags: | | |
| github.com/OpenListTeam/OpenList/v4/internal/conf.BuiltAt=$built_at | |
| github.com/OpenListTeam/OpenList/v4/internal/conf.GitAuthor=The OpenList Projects Contributors <noreply@openlist.team> | |
| github.com/OpenListTeam/OpenList/v4/internal/conf.GitCommit=$git_commit | |
| github.com/OpenListTeam/OpenList/v4/internal/conf.Version=$tag | |
| github.com/OpenListTeam/OpenList/v4/internal/conf.WebVersion=rolling | |
| - name: Compress | |
| run: | | |
| bash build.sh zip ${{ matrix.hash }} | |
| env: | |
| GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Upload assets to beta-media release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| files: build/compress/* | |
| prerelease: true | |
| tag_name: beta-media | |
| - name: Clean illegal characters from matrix.target | |
| id: clean_target_name | |
| run: | | |
| ILLEGAL_CHARS_REGEX='[":<>|*?\\/\r\n]' | |
| CLEANED_TARGET=$(echo "${{ matrix.target }}" | sed -E "s/$ILLEGAL_CHARS_REGEX//g") | |
| echo "Original target: ${{ matrix.target }}" | |
| echo "Cleaned target: $CLEANED_TARGET" | |
| echo "cleaned_target=$CLEANED_TARGET" >> $GITHUB_ENV | |
| - name: Upload assets to github artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: beta-media builds for ${{ env.cleaned_target }} | |
| path: ${{ github.workspace }}/build/compress/* | |
| compression-level: 0 | |
| if-no-files-found: error |