fix: update backup file name for incompatible profiles #91
This file contains 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: Rolling Release | |
on: | |
push: | |
branches: [profiles-legacy] | |
paths: | |
- "frontend/**" | |
workflow_dispatch: | |
jobs: | |
Build: | |
permissions: write-all | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up pnpm | |
uses: pnpm/action-setup@v4 | |
with: | |
version: 9 | |
- name: Set up Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "latest" | |
cache: "pnpm" | |
cache-dependency-path: frontend/pnpm-lock.yaml | |
- name: Install dependencies | |
run: cd frontend && pnpm install | |
- name: Build Frontend | |
run: cd frontend && pnpm build | |
- name: Create a compressed file | |
run: | | |
git rev-parse --short HEAD | tr -d '\n' > frontend/dist/version.txt | |
cd frontend | |
mv dist rolling-release | |
zip -r rolling-release.zip rolling-release | |
- name: Generate Changelog | |
run: | | |
echo -e "## The legacy version is no longer supported." > changelog.md | |
- name: Create Release and Upload Assets | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: ./{frontend/{rolling-release.zip,rolling-release/version.txt},changelog.md} | |
file_glob: true | |
tag: rolling-release-legacy | |
release_name: rolling-release-legacy | |
overwrite: true | |
draft: false | |
prerelease: true | |
body: | | |
The legacy version is no longer supported. |